-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
49 lines (43 loc) · 1.36 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
42
43
44
45
46
47
48
49
#!/usr/bin/env python
"""Setuptools params"""
from setuptools import find_packages
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from os.path import join
# Get version number from source tree
import sys
sys.path.append('.')
from easyovs import VERSION
scripts = [join('bin', filename) for filename in ['easyovs']]
modname = distname = 'easyovs'
setup(
name=distname,
version=VERSION,
description='Easy way to manage OpenvSwitch bridges',
author='Baohua Yang',
author_email='[email protected]',
packages=find_packages(include=['easyovs']),
long_description="""
EasyOVS provides more convenient and fluent way to operation your OpenvSwitch bridges,
such as list them, show the port, dump their flows and add/del some flows.
See https://github.com/yeasy/easyOVS
""",
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: System :: Systems Administration",
],
keywords='Cloud OpenStack OpenvSwitch SDN',
license='BSD',
install_requires=[
'oslo.config>=1.0',
'python-keystoneclient>=1.0',
'python-neutronclient>=2.0',
'setuptools>=3.6',
],
scripts=scripts,
)