forked from calmh/unifi-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (21 loc) · 814 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (21 loc) · 814 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/env python
from distutils.core import setup
import sys
if sys.version_info[0] == 2:
from commands import getoutput
elif sys.version_info[0] == 3:
from subprocess import getoutput
setup(name='unifi',
version='1.2.5',
description='API towards Ubiquity Networks UniFi controller',
author='Jakob Borg',
author_email='jakob@nym.se',
url='https://github.com/calmh/unifi-api',
packages=['unifi'],
scripts=['unifi-low-snr-reconnect', 'unifi-ls-clients', 'unifi-save-statistics', 'unifi-log-roaming'],
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Networking']
)