forked from faucetsdn/faucet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (47 loc) · 2.21 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
50
#!/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='1.0',
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']),
('/etc/ryu/faucet/upstart', ['src/cfg/etc/ryu/faucet/upstart/gauge.conf',
'src/cfg/etc/ryu/faucet/upstart/faucet.conf',
'src/cfg/etc/ryu/faucet/upstart/gauge',
'src/cfg/etc/ryu/faucet/upstart/faucet'])
],
include_package_data=True,
install_requires=['ryu', 'pyyaml', 'influxdb', 'ipaddr'],
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='[email protected]',
maintainer='Shivaram Mysore, ONFSDN.Org',
maintainer_email='[email protected], [email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'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 :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Topic :: System :: Networking',
],)