mirror of
https://github.com/faucetsdn/ryu.git
synced 2025-08-09 16:17:09 +02:00
setup: update installation infos
- clean up setup.py and MANIFEST.in - simplejson isn't needed anymore - allow webob >= 1.0.8 as openstack quantum uses >= 1.0.8 version - allow gflags >= 1.3 as Fedora 18 uses gflags 1.5 Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
parent
429401a1b8
commit
e69a8917ec
@ -1,6 +1,6 @@
|
|||||||
include LICENSE
|
include LICENSE
|
||||||
include README.rst
|
|
||||||
include MANIFEST.in
|
include MANIFEST.in
|
||||||
|
include *.rst
|
||||||
graft contrib
|
graft contrib
|
||||||
graft doc
|
graft doc
|
||||||
graft etc
|
graft etc
|
||||||
|
12
setup.cfg
12
setup.cfg
@ -1,6 +1,14 @@
|
|||||||
# TODO
|
[build_sphinx]
|
||||||
|
all_files = 1
|
||||||
|
build-dir = doc/build
|
||||||
|
source-dir = doc/source
|
||||||
|
|
||||||
[bdist_rpm]
|
[bdist_rpm]
|
||||||
Release = 1
|
Release = 1
|
||||||
Group = Applications/Accessories
|
Group = Applications/Accessories
|
||||||
Requires = python-gevent >= 0.13, python-gflags, python-simplejson, python-webob, python-routes
|
Requires = python-gevent >= 0.13, python-gflags, python-routes, python-webob
|
||||||
|
doc_files = LICENSE
|
||||||
|
MANIFEST.in
|
||||||
|
README.rst
|
||||||
|
SubmittingPatches.rst
|
||||||
|
doc/
|
||||||
|
2
setup.py
2
setup.py
@ -14,7 +14,6 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
import os
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from setuptools import find_packages
|
from setuptools import find_packages
|
||||||
@ -35,6 +34,7 @@ if doing_bdist:
|
|||||||
start:long_description.find('\n\n\n', start)]
|
start:long_description.find('\n\n\n', start)]
|
||||||
|
|
||||||
classifiers = [
|
classifiers = [
|
||||||
|
'Development Status :: 5 - Production/Stable',
|
||||||
'License :: OSI Approved :: Apache Software License',
|
'License :: OSI Approved :: Apache Software License',
|
||||||
'Topic :: System :: Networking',
|
'Topic :: System :: Networking',
|
||||||
'Natural Language :: English',
|
'Natural Language :: English',
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
gevent>=0.13
|
gevent>=0.13
|
||||||
python-gflags==1.3
|
python-gflags>=1.3
|
||||||
routes
|
routes
|
||||||
simplejson
|
webob>=1.0.8
|
||||||
webob==1.0.8
|
|
||||||
|
Loading…
Reference in New Issue
Block a user