-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
28 lines (26 loc) · 839 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
#!/usr/bin/env python
'''Setuptools params'''
from setuptools import setup, find_packages
setup(
name='riplpox',
version='0.0.0',
description='A simple OpenFlow-based data center network controller',
author='Brandon Heller',
author_email='[email protected]',
packages=find_packages(exclude='test'),
long_description="""\
Insert longer description here.
""",
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Internet",
],
keywords='networking protocol Internet OpenFlow data center datacenter',
license='GPL',
install_requires=[
'setuptools',
'networkx'
])