-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·39 lines (33 loc) · 1 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
#!/usr/bin/env python
"Setuptools params"
from setuptools import setup, find_packages
from os.path import join
# Get version number from source tree
import sys
sys.path.append('.')
VERSION = "1.0.0"
distname = 'opsvsi'
setup(
name=distname,
version=VERSION,
description='OpenSwitch test/development infrastructure based on Mininet',
packages=['opsvsi', 'opsvsiutils', 'opsvsiutils.restutils'],
long_description="""
OpenSwitchVSI is an emulation platform to be used both during
the development and testing of OpenSwitch software.
""",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Topic :: System :: Emulators",
],
license='Apache Software License',
install_requires=[
'setuptools',
'mininet'
],
package_data={'opsvsi' : ['scripts/*']},
scripts=[],
)