forked from pulp/nectar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·30 lines (22 loc) · 1.02 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
#!/usr/bin/env python2
from setuptools import setup, find_packages
setup(name='nectar',
version='1.6.4',
url='https://github.com/pulp/nectar',
description='Performance tuned network download client library',
license='GPLv2',
author='Pulp Team',
author_email='[email protected]',
packages=find_packages(),
test_suite='nose.collector',
classifiers=['Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules'],
options={'build': {'build_base': '_build'},
'sdist': {'dist_dir': '_dist'}},
install_requires=['isodate >= 0.4.9',
'requests >= 2.0.0'],)