forked from faucetsdn/faucet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (43 loc) · 1.85 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
from os import path
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__),
os.pardir)))
setup(
name='ryu-faucet',
version='0.30',
packages=['ryu_faucet'],
package_dir={'ryu_faucet': 'src/ryu_faucet'},
data_files=[('/etc/ryu/faucet', ['src/cfg/etc/ryu/faucet/gauge.conf',
'src/cfg/etc/ryu/faucet/faucet.yaml'])
],
include_package_data=True,
install_requires=['ryu', 'pyyaml', 'influxdb'],
license='Apache License 2.0',
description='Ryu application to perform Layer 2 switching with VLANs.',
long_description=README,
url='http://onfsdn.github.io/faucet',
author='Christopher Lorier',
author_email='chris.lorier@reannz.co.nz',
maintainer='Shivaram Mysore, ONFSDN.Org',
maintainer_email='shivaram.mysore@gmail.com, faucet-dev@OpenflowSDN.Org',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Framework :: Buildout',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: System :: Networking',
],)