diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..41583033 --- /dev/null +++ b/setup.py @@ -0,0 +1,38 @@ +# Copyright (C) 2011 Nippon Telegraph and Telephone Corporation. +# Copyright (C) 2011 Isaku Yamahata <yamahata at valinux co jp> +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +import os + +from setuptools import find_packages +from setuptools import setup + +README = os.path.join(os.path.dirname(__file__), 'README.rst') +long_description = open(README).read() + '\n\n' + +setup(name='ryu', + version='0.1', + description=("Ryu Network Operating System"), + long_description=long_description, + keywords='openflow openvswitch openstack', + url='http://www.osrg.net/ryu/', +# author='', + autor_email='ryu-devel@lists.sourceforge.net', + license='GPL v3 only', + packages=find_packages(), + scripts=['bin/ryu-manager', + 'bin/ryu-client'], + data_files=[('etc/ryu', ['etc/ryu/ryu.conf'])], +# install_requires=[] + ) |