-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
36 lines (34 loc) · 1.3 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
35
36
"""main installation setup file"""
from setuptools import setup
setup(name='cli-github',
description='Github inside the Command Line',
version='1.0.9',
license='GPL v3.0',
author='Harsha Srinivas',
author_email='95harsha95@gmail.com',
packages=['cli_github'],
entry_points={
'console_scripts': ['cli-github=cli_github:main'],
},
install_requires=[
'prettytable',
'future',
'python-dateutil'
],
url='https://github.com/harshasrinivas/cli-github/',
keywords=['github', 'CLI', 'github-within-CLI', 'python'],
classifiers=[
'Operating System :: POSIX',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: User Interfaces',
'Topic :: Software Development :: Version Control',
],)