forked from hordurk/python-nut2
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (26 loc) · 1.01 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
from distutils.core import setup
setup(
name='pynut2',
packages=['pynut2'],
version='2.1.2',
license='GPL3',
description='A Python abstraction class to access NUT servers.',
url='https://github.com/mezz64/python-nut2',
author='John Mihalic',
author_email='[email protected]',
download_url='https://github.com/mezz64/python-nut2/tarball/2.1.2',
keywords=['ups', 'nut', 'network', 'tools'],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Power (UPS)',
'Topic :: System :: Systems Administration',
],
)