forked from seveas/python-hpilo
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
executable file
·25 lines (23 loc) · 911 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·25 lines (23 loc) · 911 Bytes
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
#!/usr/bin/python
fromsetuptoolsimportsetup
setup(name="python-hpilo",
version="4.4.3",
author="Dennis Kaarsemaker",
author_email="dennis@kaarsemaker.net",
url="http://github.com/seveas/python-hpilo",
description="iLO automation from python or shell",
py_modules= ["hpilo", "hpilo_fw"],
scripts= ["hpilo_cli"],
classifiers= [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License (GPL)',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: System :: Hardware',
'Topic :: System :: Systems Administration',
'Topic :: System :: Networking',
]
)