forked from calmh/unifi-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·27 lines (22 loc) · 869 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
26
27
#!/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
version = getoutput('git describe --always') or '1.0'
setup(name='unifi',
version=version,
description='API towards Ubiquity Networks UniFi controller',
author='Jakob Borg',
author_email='[email protected]',
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']
)