forked from pyscada/PyScada
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (47 loc) · 1.49 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_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 General Public License v3 (GPLv3)',
'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/trombastic/PyScada',
license='GPL version 3',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=[
'django<2.3',
'pymodbus>=1.2',
'numpy>=1.6.0',
'h5py>=2.2.1',
'psutil>=2.1.1',
'pillow',
'python-daemon>=2.0.0',
'pytz',
'pyserial'
],
packages=find_packages(exclude=["project", "project.*"]),
include_package_data=True,
zip_safe=False,
test_suite='runtests.main',
namespace_packages=['pyscada']
)