-
Notifications
You must be signed in to change notification settings - Fork 165
/
setup.py
53 lines (51 loc) · 1.64 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_namespace_packages
import os
from pyscada import core
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Environment :: Console",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: JavaScript",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Scientific/Engineering :: Visualization",
]
setup(
author=core.__author__,
author_email="[email protected]",
name="PyScada",
version=core.__version__,
description="A Python and Django based Open Source SCADA System",
long_description=open(os.path.join(os.path.dirname(__file__), "README.rst")).read(),
url="http://www.github.com/pyscada/PyScada",
license="AGPLv3",
platforms=["OS Independent"],
classifiers=CLASSIFIERS,
install_requires=[
"django>=4.2,<4.3",
"numpy>=1.6.0",
"h5py>=2.2.1",
"pillow",
"python-daemon>=2.0.0",
"pytz",
"python-dateutil",
# 'channels',
# 'channels-redis',
"asgiref",
"monthdelta",
"six",
"concurrent-log-handler", # rotating logs for multiprocess
"scipy",
],
packages=find_namespace_packages(exclude=["project", "project.*"]),
include_package_data=True,
zip_safe=False,
test_suite="runtests.main",
)