2012-06-18 21:25:24 +09:00
|
|
|
# Copyright (C) 2011, 2012 Nippon Telegraph and Telephone Corporation.
|
2011-12-09 15:56:05 +09:00
|
|
|
# Copyright (C) 2011 Isaku Yamahata <yamahata at valinux co jp>
|
|
|
|
#
|
2012-04-06 08:38:45 +09:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
2011-12-09 15:56:05 +09:00
|
|
|
#
|
2012-04-06 08:38:45 +09:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2011-12-09 15:56:05 +09:00
|
|
|
#
|
2012-04-06 08:38:45 +09:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
|
|
# implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2011-12-09 15:56:05 +09:00
|
|
|
|
2012-06-18 21:25:24 +09:00
|
|
|
import sys
|
2011-12-09 15:56:05 +09:00
|
|
|
|
|
|
|
from setuptools import find_packages
|
|
|
|
from setuptools import setup
|
|
|
|
|
2012-06-19 11:33:46 +09:00
|
|
|
from ryu import version
|
2012-11-30 15:54:12 +09:00
|
|
|
from ryu import utils
|
|
|
|
|
|
|
|
requires = utils.parse_requirements()
|
2012-06-19 11:33:46 +09:00
|
|
|
|
2012-06-18 21:25:24 +09:00
|
|
|
doing_bdist = any(arg.startswith('bdist') for arg in sys.argv[1:])
|
|
|
|
|
|
|
|
long_description = open('README.rst').read() + '\n\n'
|
|
|
|
|
|
|
|
if doing_bdist:
|
|
|
|
start = long_description.find('=\n') + 2
|
|
|
|
long_description = long_description[
|
|
|
|
start:long_description.find('\n\n\n', start)]
|
2011-12-09 15:56:05 +09:00
|
|
|
|
2012-06-13 00:00:46 +09:00
|
|
|
classifiers = [
|
2013-01-08 17:35:58 +09:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2012-06-13 00:00:46 +09:00
|
|
|
'License :: OSI Approved :: Apache Software License',
|
|
|
|
'Topic :: System :: Networking',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Operating System :: Unix',
|
2012-08-22 06:27:12 +09:00
|
|
|
]
|
2012-06-13 00:00:46 +09:00
|
|
|
|
2012-10-02 11:32:23 +09:00
|
|
|
if sys.platform == 'win32':
|
|
|
|
data_files = [('etc/ryu', ['etc/ryu/ryu.conf'])]
|
|
|
|
else:
|
|
|
|
data_files = [('/etc/ryu', ['etc/ryu/ryu.conf'])]
|
|
|
|
|
2011-12-09 15:56:05 +09:00
|
|
|
setup(name='ryu',
|
2012-06-19 11:33:46 +09:00
|
|
|
version=version,
|
2011-12-09 15:56:05 +09:00
|
|
|
description=("Ryu Network Operating System"),
|
|
|
|
long_description=long_description,
|
2012-06-13 00:00:46 +09:00
|
|
|
classifiers=classifiers,
|
2011-12-09 15:56:05 +09:00
|
|
|
keywords='openflow openvswitch openstack',
|
2012-06-16 09:11:18 +09:00
|
|
|
url='http://osrg.github.com/ryu/',
|
2012-06-05 23:37:48 +09:00
|
|
|
author='Ryu project team',
|
2012-02-16 18:04:43 +09:00
|
|
|
author_email='ryu-devel@lists.sourceforge.net',
|
2012-11-30 15:54:12 +09:00
|
|
|
install_requires=requires,
|
2012-04-06 08:38:45 +09:00
|
|
|
license='Apache License 2.0',
|
2011-12-09 15:56:05 +09:00
|
|
|
packages=find_packages(),
|
|
|
|
scripts=['bin/ryu-manager',
|
|
|
|
'bin/ryu-client'],
|
2012-10-02 11:32:23 +09:00
|
|
|
data_files=data_files,
|
2011-12-09 15:56:05 +09:00
|
|
|
)
|