-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (22 loc) · 1.03 KB
/
setup.py
File metadata and controls
executable file
·25 lines (22 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#/usr/bin/env python
from distutils.core import setup
import percol
setup(name = "percol",
version = percol.__version__,
author = "mooz",
author_email = "stillpedant@gmail.com",
url = "https://github.com/mooz/percol",
description = "Adds flavor of interactive filtering to the traditional pipe concept of shell",
long_description = percol.__doc__,
packages = ["percol"],
scripts = ["bin/percol"],
classifiers = ["Environment :: Console :: Curses",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Text Processing :: Filters",
"Topic :: Text Editors :: Emacs",
"Topic :: Utilities"],
keywords = "anything.el unite.vim dmenu shell pipe filter curses",
license = "MIT",
)