-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
39 lines (34 loc) · 981 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
#!/usr/bin/env python
"Setuptools params"
from setuptools import setup, find_packages
VERSION = '0.1a'
modname = distname = 'fibbingnode'
setup(
name=distname,
version=VERSION,
description='The set of scripts to manage a fibbing node',
author='Olivier Tilmans',
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",
],
keywords='networking OSPF fibbing',
license='GPLv2',
install_requires=[
'setuptools',
'mako',
'networkx==1.11',
'py2-ipaddress'
],
extras_require={
'draw': ['matplotlib'],
},
tests_require=['pytest'],
setup_requires=['pytest-runner']
)