Update and rename MantenerFIFO to MantenerFIFO.md
[vsorcdistro/.git] / ryu / setup.cfg
1 [metadata]
2 name = ryu
3 summary = Component-based Software-defined Networking Framework
4 license = Apache License 2.0
5 author = Ryu project team
6 author-email = ryu-devel@lists.sourceforge.net
7 home-page = http://osrg.github.io/ryu/
8 description-file = README.rst
9 platform = any
10 classifier =
11     Development Status :: 5 - Production/Stable
12     License :: OSI Approved :: Apache Software License
13     Topic :: System :: Networking
14     Natural Language :: English
15     Programming Language :: Python
16     Programming Language :: Python :: 2.7
17     Programming Language :: Python :: 3
18     Programming Language :: Python :: 3.4
19     Programming Language :: Python :: 3.5
20     Programming Language :: Python :: 3.6
21     Programming Language :: Python :: 3.7
22     Operating System :: Unix
23 keywords =
24     openflow
25     openvswitch
26     openstack
27
28 [files]
29 packages =
30     ryu
31 data_files =
32     etc/ryu =
33         etc/ryu/ryu.conf
34
35 [build_sphinx]
36 all_files = 1
37 build-dir = doc/build
38 source-dir = doc/source
39
40 [bdist_rpm]
41 Release = 1
42 Group = Applications/Accessories
43 Requires = python-eventlet, python-routes, python-webob, python-paramiko, python-netaddr, python-lxml, python-oslo-config, python-msgpack
44 doc_files = LICENSE
45             MANIFEST.in
46             README.rst
47             CONTRIBUTING.rst
48             doc/
49
50 [global]
51 setup-hooks =
52     ryu.hooks.setup_hook
53
54 [entry_points]
55 console_scripts =
56     ryu-manager = ryu.cmd.manager:main
57     ryu = ryu.cmd.ryu_base:main