-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
34 lines (33 loc) · 1.18 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
27
28
29
30
31
32
33
34
from setuptools import setup
setup(
name='fancycompleter',
setup_requires="setupmeta",
versioning="devcommit",
maintainer="Daniel Hahler",
url='https://github.com/pdbpp/fancycompleter',
author='Antonio Cuni',
author_email='[email protected]',
py_modules=['fancycompleter'],
license='BSD',
description='colorful TAB completion for Python prompt',
keywords='rlcompleter prompt tab color completion',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Topic :: Utilities",
],
install_requires=[
"pyrepl @ git+https://github.com/pdbpp/pyrepl@master#egg=pyrepl",
"pyreadline;platform_system=='Windows'",
]
)