-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.07 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
from setuptools import setup
from os import path, listdir
scripts = [path.join('bin', filename) for filename in os.listdir('bin')]
setup(name='sdntest',
version='0.1',
description='A general SDN test framework',
url='http://github.com/snlab-freedom/sdntest',
author='Jensen Zhang',
author_email='jingxuan.n.zhang@gmail.com',
long_description="""
SDNTest is a general purpose test framework for SDN scenario.
It allows users to define their own testcases and repeatedly
execute them in different docker containers.
""",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Topic :: System :: Networking :: Test Framework",
"Topic :: Utilities"
],
license='MIT',
packages=['sdntest', 'sdntest.examples'],
install_requires=[
'setuptools',
'docker'
],
scripts=scripts,
zip_safe=False)