-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
42 lines (40 loc) · 1.29 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
37
38
39
40
41
42
#!/usr/bin/env python
from setuptools import setup
import sys # noqa
setup(
name='getit',
version='3.0',
description='A cross platform CLI downloader tool written in python.',
long_description=open('README.rst').read(),
author='Ankit Jain',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Natural Language :: English',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords="download cli, downloaded-tool, cross-platform-cli-downloader",
author_email='[email protected]',
url='https://github.com/ankitjain28may/getit',
packages=['getit'],
install_requires=[
'configparser>=3.5.0',
'requests==2.10.0',
'colorama>=0.3.7',
'future==0.16.0'
],
entry_points={
'console_scripts': [
'getit = getit.getit:main'
],
}
)