forked from ChristianTremblay/BAC0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (46 loc) · 1.29 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
"""
Setup.py
"""
from setuptools import setup
from BAC0 import infos
requirements = ["bacpypes", "colorama"]
setup(
name="BAC0",
version=infos.__version__,
description="BACnet Scripting Framework for testing DDC Controls",
author=infos.__author__,
author_email=infos.__email__,
url=infos.__url__,
download_url=infos.__download_url__,
keywords=["bacnet", "building", "automation", "test"],
packages=[
"BAC0",
"BAC0.core",
"BAC0.core.app",
"BAC0.core.io",
"BAC0.core.functions",
"BAC0.core.devices",
"BAC0.core.devices.local",
"BAC0.core.devices.mixins",
"BAC0.core.utils",
"BAC0.core.proprietary_objects",
"BAC0.scripts",
"BAC0.tasks",
"BAC0.web",
"BAC0.sql",
],
include_package_data=True,
requires=requirements,
install_requires=requirements,
test_suite="tests",
long_description=open("README.rst").read(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
"Topic :: Utilities",
],
)