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
executable file
·23 lines (21 loc) · 820 Bytes
/
setup.py
File metadata and controls
executable file
·23 lines (21 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/python
from distutils.core import setup
setup(name = "python-hpilo",
version = "1.5",
author = "Dennis Kaarsemaker",
author_email = "dennis@kaarsemaker.net",
url = "http://github.com/seveas/python-hpilo",
description = "Accessing HP iLO interfaces from python",
py_modules = ["hpilo", "hpilo_fw"],
scripts = ["hpilo_cli", "hpilo_ca"],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Topic :: System :: Hardware',
'Topic :: System :: Systems Administration',
'Topic :: System :: Networking',
]
)