forked from seveas/python-hpilo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·25 lines (23 loc) · 913 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
#!/usr/bin/python
from distutils.core import setup
setup(name = "python-hpilo",
version = "3.9",
author = "Dennis Kaarsemaker",
author_email = "[email protected]",
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',
]
)