forked from HewlettPackard/python-ilorest-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 918 Bytes
/
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
from setuptools import setup, find_packages
extras = {}
setup(name='python-ilorest-library',
version='3.3.0.0',
description='iLO Rest Python Library',
author = 'Hewlett Packard Enterprise',
author_email = '[email protected]',
extras_require = extras,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Communications'
],
keywords='Hewlett Packard Enterprise',
url='https://github.com/HewlettPackard/python-ilorest-library',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=[
'jsonpatch',
'jsonpath_rw',
'jsonpointer',
'urllib3',
'six'
])