-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·42 lines (40 loc) · 1.39 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_namespace_packages
import os
from pyscada import operations as pyscada_app
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=pyscada_app.__author__,
author_email=pyscada_app.__email__,
name="pyscada-" + pyscada_app.__app_name__.lower(),
version=pyscada_app.__version__,
description=pyscada_app.__description__,
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=[
"pyscada>=0.8.2",
"numpy",
"simpleeval",
],
packages=find_namespace_packages(exclude=["project", "project.*"]),
include_package_data=True,
zip_safe=False,
test_suite="runtests.main",
)