-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (23 loc) · 956 Bytes
/
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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(name = 'vsdnemul',
version = '0.2',
long_description = readme(),
packages = find_packages(),
url = 'https://github.com/FernandoFarias/vsdnemul',
classifiers = [
'Development Status :: 0.2 - Release',
'License :: OSI Approved :: APACHE2 License',
'Programming Language :: Python :: 3.6',
'Topic :: SDN Develop :: Network Emulator',
],
license = 'Apache2',
author = 'Fernando Farias',
author_email = '[email protected]',
description = 'A SDN topology emulator to create specific topologies for research and development in SDN',
keywords = "SDN Networking Emulator",
install_requires = ['pyroute2', 'docker', 'cmd2', 'requests', 'names', 'ryu', 'terminaltables'],
include_package_data = True,
zip_safe = False)