forked from clavay/PyScada-Laborem
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (39 loc) · 1.37 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
from pyscada import laborem
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="Camille Lavayssière",
author_email="[email protected]",
name='pyscada-laborem',
version=laborem.__version__,
description='LaboREM extension for PyScada 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/clavay/PyScada-LaboREM',
license='GPL version 3',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=[
'pyscada',
],
packages=find_packages(exclude=["project", "project.*"]),
include_package_data=True,
zip_safe=False,
test_suite='runtests.main',
namespace_packages=['pyscada']
)