update setup.py for PyPI

Add classifiers.

Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
FUJITA Tomonori 2012-06-13 00:00:46 +09:00
parent 039aef2851
commit 3fafa122d4
1 changed files with 9 additions and 0 deletions

View File

@ -21,10 +21,19 @@ from setuptools import setup
long_description = 'Ryu is an open-sourced network operating system licensed under Apache License v2. Ryu aims to provide logically centralized control and well defined API that makes it easy for cloud operators to implement network management applications on top of the Ryu. Currently, Ryu supports OpenFlow protocol to control the network devices.'
classifiers = [
'License :: OSI Approved :: Apache Software License',
'Topic :: System :: Networking',
'Natural Language :: English',
'Programming Language :: Python',
'Operating System :: Unix',
]
setup(name='ryu',
version='0.2',
description=("Ryu Network Operating System"),
long_description=long_description,
classifiers=classifiers,
keywords='openflow openvswitch openstack',
url='http://www.osrg.net/ryu/',
author='Ryu project team',