forked from mininet/mininet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (34 loc) · 999 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
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
from mtv.net import VERSION
"Setuptools params"
from setuptools import setup, find_packages
from os.path import join
# Get version number from source tree
import sys
sys.path.append('.')
scripts = [join('bin', filename) for filename in ['mn']]
modname = distname = 'mtv'
setup(
name=distname,
version=VERSION,
description='Testbed for Virtual Network Functions',
author='Will Fantom',
author_email='w.fantom@lancs.ac.uk',
packages=['mtv'],
long_description="""
Testbed for Virtual Network Functions
""",
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 NFV VNF',
license='BSD',
install_requires=[
'setuptools'
],
scripts=scripts,
)