forked from dgquaid/python-kemptech-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 1.15 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
#!/usr/bin/env python
from pip.req import parse_requirements
from setuptools import find_packages, setup
install_reqs = parse_requirements('requirements.txt', session=False)
reqs = [str(ir.req) for ir in install_reqs]
setup(name="python-kemptech-api",
version="0.7.27",
packages=find_packages(),
author="KEMP Technologies",
author_email="[email protected]",
maintainer="Shane McGough",
description="KEMP Technologies Python API",
long_description=open('README.md').read(),
license="Apache",
keywords="python api kemptech kemp technologies restfull loadmaster",
url="http://pypi.python.org/pypi/python-kemptech-api/",
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Internet',
],
include_package_data=True,
install_requires=reqs
)