forked from wwwatm/vxfld
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 687 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 687 Bytes
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
from setuptools import setup, find_packages
setup(
name='vxfld',
version='2.0',
description='VXLAN Flooding Service',
author='Cumulus Networks/Metacloud Engineering',
author_email='info@cumulusnetworks.com',
url='cumulusnetworks.com',
scripts=[
'bin/vxrd',
'bin/vxrdctl',
'bin/vxsnd',
'bin/vxsndctl'
],
setup_requires=[
'setuptools>=0.6cc1'
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'python-daemon==1.5.5',
'dpkt==1.8.6.2',
'docopt==0.6.1',
'eventlet>=0.17'
],
license='GPLv2'
)