-
Notifications
You must be signed in to change notification settings - Fork 145
/
setup.py
executable file
·26 lines (23 loc) · 1.1 KB
/
setup.py
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
26
#!/usr/bin/env python
from setuptools import setup
exec(open("percol/info.py").read())
setup(name = "percol",
version = __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 = __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",
install_requires = ["six >= 1.7.3", "cmigemo >= 0.1.5"]
)