- 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 <[email protected]> --- MANIFEST.in | 2 +- setup.cfg | 12 ++++++++++-- setup.py | 2 +- tools/pip-requires | 5 ++--- 4 files changed, 14 insertions(+), 7 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index d7d8ecd..1d97c88 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,6 @@ include LICENSE -include README.rst include MANIFEST.in +include *.rst graft contrib graft doc graft etc diff --git a/setup.cfg b/setup.cfg index 411aade..ac6ba19 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,14 @@ -# TODO +[build_sphinx] +all_files = 1 +build-dir = doc/build +source-dir = doc/source [bdist_rpm] Release = 1 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/ diff --git a/setup.py b/setup.py index f1915a7..297c89d 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -import os import sys from setuptools import find_packages @@ -35,6 +34,7 @@ if doing_bdist: start:long_description.find('\n\n\n', start)] classifiers = [ + 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: Apache Software License', 'Topic :: System :: Networking', 'Natural Language :: English', diff --git a/tools/pip-requires b/tools/pip-requires index c036d18..592617e 100644 --- a/tools/pip-requires +++ b/tools/pip-requires @@ -1,5 +1,4 @@ gevent>=0.13 -python-gflags==1.3 +python-gflags>=1.3 routes -simplejson -webob==1.0.8 +webob>=1.0.8 -- 1.7.10.4 ------------------------------------------------------------------------------ Master SQL Server Development, Administration, T-SQL, SSAS, SSIS, SSRS and more. Get SQL Server skills now (including 2012) with LearnDevNow - 200+ hours of step-by-step video tutorials by Microsoft MVPs and experts. SALE $99.99 this month only - learn more at: http://p.sf.net/sfu/learnmore_122512 _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
