-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathsetup.py
46 lines (41 loc) · 2.21 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
from setuptools import setup, find_packages
thisversion = '1.0.1'
setup(name="switchyard",
version=thisversion,
description="Switchyard is a framework for creating networked systems",
author="Joel Sommers",
author_email="[email protected]",
url="https://github.com/jsommers/switchyard",
keywords=['education', 'networked systems',],
zip_safe=True,
packages=find_packages(),
python_requires='>=3.6',
package_data={ '': ['*.txt', '*.rst'], },
exclude_package_data={'': ['README.rst','README.md']},
install_requires=["cffi >=1.14.0","colorama >=0.4.3","networkx >=2.4", "psutil >=5.7.0"],
tests_require=['coverage >=5.1'],
entry_points= {
'console_scripts': [ 'swyard = switchyard.swyard:main' ],
},
license="This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. http://creativecommons.org/licenses/by-nc-sa/4.0/",
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering",
"Topic :: Education",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Networking",
"Environment :: Console",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
long_description='''
Switchyard is a library and framework for creating networked systems in Python. It is primarily intended for educational use and supports creating devices from layer 2 (Ethernet) all the way through the application layer.
Documentation is available at http://jsommers.github.io/switchyard
Documentation is written using the Python Sphinx package; doc sources are
available in the documentation directory.
The Switchyard software is distributed under terms of the GNU General Public License, version 3.
Switchyard's documentation is distributed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License: http://creativecommons.org/licenses/by-nc-sa/4.0/.
'''
)