forked from DMTF/python-redfish-utility
-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
54 lines (52 loc) · 1.82 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
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import find_packages, setup
extras = {}
setup(name='ilorest',
version='5.3.0.0',
description='HPE iLORest Tool',
author='Hewlett Packard Enterprise',
author_email='rajeevalochana.kallur@hpe.com',
extras_require=extras,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Communications'
],
keywords='Hewlett Packard Enterprise',
url='https://github.com/HewlettPackard/python-redfish-utility',
packages=find_packages('.'),
package_dir={'': '.'},
entry_points={
'console_scripts': [
'ilorest = ilorest.rdmc:ilorestcommand',
],
},
install_requires=[
'urllib3 >= 1.26.2',
'pyaes >= 1.6.1',
'colorama >= 0.4.4',
'jsonpointer >= 2.0',
'six >= 1.15.0',
'ply >= 3.11',
'decorator >= 4.4.2',
'jsonpatch >= 1.28',
'jsonpath-rw >= 1.4.0',
'setproctitle >= 1.1.8; platform_system == "Linux"',
'jsondiff >= 1.2.0',
'tabulate >= 0.8.7',
'prompt_toolkit',
'certifi >= 2020.12.5',
'pywin32; platform_system == "Windows"',
'wcwidth >= 0.2.5',
'pyudev',
'future',
'enum; python_version <= "2.7.19"',
'futures; python_version <= "2.7.19"',
'python-ilorest-library >= 5.3.0.0'
])