-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
30 lines (27 loc) · 937 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
#!/usr/bin/env python
'''
Created on 2015/11/17
:author: hubo
'''
try:
import ez_setup
ez_setup.use_setuptools()
except Exception:
pass
from setuptools import setup, find_packages
VERSION = '2.2.1'
setup(name='vlcp',
version=VERSION,
description='Full stack framework for SDN Controller, support Openflow 1.0, Openflow 1.3, and Nicira extensions. Also a powerful coroutine-based web server.',
author='Hu Bo',
author_email='[email protected]',
license="http://www.apache.org/licenses/LICENSE-2.0",
url='http://github.com/hubo1016/vlcp',
keywords=['SDN', 'VLCP', 'Openflow'],
test_suite = 'tests',
use_2to3=False,
install_requires = ["nstruct>=1.3.1", "pychecktype>=1.4.0"],
packages=find_packages(exclude=("tests","tests.*","misc","misc.*")),
entry_points={'console_scripts': ['vlcp-start = vlcp.start:default_start']},
python_requires='>=3.5'
)