forked from containernet/containernet
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
executable file
·54 lines (47 loc) · 1.62 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 python
"Setuptools params"
from setuptools import setup
from os.path import join
# Get version number from source tree
import sys
sys.path.append( '.' )
from containernet.net import CONTAINERNET_VERSION
scripts = [ join( 'bin', filename ) for filename in [ 'mn' ] ]
modname = distname = 'containernet'
setup(
name=distname,
version=CONTAINERNET_VERSION,
description='Mininet fork that adds Container support.',
author='Manuel Peuster',
author_email='[email protected]',
packages=[ 'containernet', 'containernet.examples', 'mininet-wifi.mininet.mininet',
'mininet-wifi.mn_wifi'],
long_description="""
Mininet is a network emulator which uses lightweight
virtualization to create virtual networks for rapid
prototyping of Software-Defined Network (SDN) designs
using OpenFlow. http://mininet.org
Mininet author: Bob Lantz ([email protected])
Containernet is a fork of Mininet that allows
to use Docker containers as hosts in emulated
networks.
""",
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: System :: Emulators",
],
keywords='networking emulator protocol Internet OpenFlow SDN',
license='BSD',
install_requires=[
'setuptools',
'urllib3',
'docker',
#'python-iptables', // found issues with ubuntu 22.04
'pytest',
'more-itertools'
],
scripts=scripts,
)