-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (36 loc) · 1.09 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
#!/usr/bin/env python
"Setuptools params"
from setuptools import setup, find_packages
VERSION = '0.1.0'
modname = distname = 'srnmininet'
setup(
name=distname,
version=VERSION,
description='A IPMininet extension providing components to emulate SRN'
'(see http://segment-routing.org/index.php/SRN)',
author='Mathieu Jadin',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
classifiers=[
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Topic :: System :: Networking",
'Programming Language :: Python :: 3'
],
keywords='networking SRv6 IPMininet OSPF IP BGP quagga mininet SRN',
license='GPLv2',
install_requires=[
'setuptools',
'ipmininet',
'numpy',
'psutil',
'mako',
'mininet'
],
tests_require=[],
setup_requires=[],
url='https://bitbucket.org/jadinm/srnmininet'
)