-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
65 lines (60 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
"""
Setup file for pyhaystack
"""
import pyhaystack.info as info
from setuptools import setup
import os
os.environ["COPY_EXTENDED_ATTRIBUTES_DISABLE"] = "true"
os.environ["COPYFILE_DISABLE"] = "true"
setup(
name="pyhaystack",
version=info.__version__,
description="Python Haystack Utility",
author=info.__author__,
author_email=info.__author_email__,
url="http://www.project-haystack.com/",
keywords=["tags", "hvac", "project-haystack", "building", "automation", "analytic"],
install_requires=[
"requests",
"setuptools",
"pandas",
"iso8601",
"hszinc",
"six",
"fysom",
"signalslot",
"semver",
"certifi",
],
packages=[
"pyhaystack",
"pyhaystack.client",
"pyhaystack.client.mixins",
"pyhaystack.client.mixins.vendor",
"pyhaystack.client.mixins.vendor.widesky",
"pyhaystack.client.mixins.vendor.skyspark",
"pyhaystack.client.mixins.vendor.niagara",
"pyhaystack.client.http",
"pyhaystack.client.ops",
"pyhaystack.client.ops.vendor",
"pyhaystack.client.entity",
"pyhaystack.client.entity.mixins",
"pyhaystack.client.entity.models",
"pyhaystack.client.entity.ops",
"pyhaystack.util",
"pyhaystack.server",
"pyhaystack.util",
],
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",
"License :: OSI Approved :: Apache Software License",
],
)