-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathsetup.py
51 lines (49 loc) · 1.42 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="alarmdecoder-webapp",
version='0.8.6',
url='https://github.com/nutechsoftware/alarmdecoder-webapp',
description='AlarmDecoder-webapp provides a web interface for your AlarmDecoder device.',
author='Nu Tech Software Solutions, Inc.',
author_email='[email protected]',
packages=["ad2web"],
include_package_data=True,
zip_safe=False,
install_requires=[
'Flask',
'Flask-SQLAlchemy',
'Flask-WTF',
'Flask-Script',
'Flask-Babel',
'Flask-Testing',
'Flask-Mail',
'Flask-Cache',
'Flask-Login',
'Flask-OpenID',
'nose',
'alarmdecoder>=0.9',
'pyopenssl',
'gevent-socketio',
'jsonpickle',
'sleekxmpp',
'psutil>=2.0.0',
'sh',
'alembic',
'netifaces',
'futures; python_version == "2.7"',
],
test_suite='tests',
classifiers=[
'Development Status :: 5 - Stable',
'Environment :: Web Environment',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries'
'Topic :: Communications',
'Topic :: Home Automation',
'Topic :: Security',
]
)