forked from scy-phy/minicps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·55 lines (53 loc) · 1.85 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
#!/usr/bin/env python3
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# NOTE: https://packaging.python.org/
setup(
name='minicps',
version='1.1.4',
description='MiniCPS: a framework for Cyber-Physical Systems \
real-time simulation, built on top of mininet.',
# NOTE: long_description displayed on PyPi
long_description='MiniCPS is a framework for Cyber-Physical Systems \
real-time simulation. It includes support for physical process and \
control devices simulation, and network emulation. It is built \
on top of mininet.',
url='https://github.com/scy-phy/minicps',
author='Daniele Antonioli',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Education',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Security',
],
keywords='simulation cyber-physical systems security real-time mininet',
packages=['minicps'],
# packages=find_packages(exclude=['docs', 'tests*', 'examples', 'temp',
# 'bin']),
# NOTE: for the uses, see requirements for the developer
install_requires=[
'cryptography',
'pyasn1',
'pymodbus',
'cpppo',
'pandas',
],
# NOTE: specify files relative to the module path
package_data={},
# NOTE: specify files with absolute paths
data_files=None,
scripts=[],
)