-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 1.17 KB
/
setup.py
File metadata and controls
26 lines (23 loc) · 1.17 KB
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 setuptools import setup, find_packages
setup(name='floranet',
version = '0.4.8',
description = 'LoRa Network Server',
author = 'Frank Edwards',
author_email = 'frank.edwards@fluentnetworks.com.au',
url = 'https://github.com/fluentnetworks/floranet',
packages = find_packages(exclude=["*.test", "*.test.*"]),
install_requires = ['twisted==18.4.0', 'psycopg2>=1.6',
'pyOpenSSL>=18.0.0', 'pyasn1>=0.4.3',
'service-identity>=17.0.0',
'twisted-mqtt>=0.3.6',
'twistar>=1.6', 'alembic>=0.8.8',
'py2-ipaddress>=3.4.1',
'pycrypto>=2.6.1', 'CryptoPlus==1.0',
'requests>=2.13.0', 'flask>=0.12',
'Flask-RESTful>=0.3.5', 'Flask-Login>=0.4.0',
'crochet>=1.6.0', 'click>=6.7', 'click_shell>=1.0',
'mock>=2.0.0'],
dependency_links = ['https://github.com/doegox/python-cryptoplus/tarball/master#egg=CryptoPlus-1.0'],
scripts = ['cmd/floranet', 'cmd/floracmd'],
)