diff --git a/docs/conf.py b/docs/conf.py index c8ee8397bcfb5e02a003ab43b6c2e39966f5e36c..b8a4f5339c006c478072202019c4dadb5fb5ca66 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,7 +61,7 @@ author = u'Piotr MaĹlanka' # The short X.Y version. version = u'2.0' # The full version, including alpha/beta/rc tags. -release = u'2.0-rc' +release = u'2.0.12rc3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index 8fff38b0ea465c30dff2f62c3b2fd9ee762a4040..7705401e0468fd39b681a63147d6c9ec65ff16d2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,6 +7,18 @@ author_email = piotrm@smok.co description = Utilities for writing servers in Python url = https://github.com/piotrmaslanka/satella +classifier = + Programming Language :: Python, + Programming Language :: Python :: 2.7, + Programming Language :: Python :: 3.5, + Programming Language :: Python :: Implementation :: CPython, + Programming Language :: Python :: Implementation :: PyPy, + Operating System :: POSIX, + Operating System :: OS Independent, + Development Status :: 3 - Alpha, + License :: OSI Approved :: MIT License, + Topic :: Software Development :: Libraries + [pycodestyle] max-line-length=80 diff --git a/setup.py b/setup.py index d26c359777a74f38429bc323a6747d65f39caf20..70ee38300428db67d64a15d68a530ae90851add7 100644 --- a/setup.py +++ b/setup.py @@ -11,19 +11,5 @@ setup(keywords=['ha', 'high availability', 'scalable', 'scalability', 'server'], tests_require=[ "nose", "mock", "coverage" ], - test_suite='nose.collector', - classifiers=[ - 'Programming Language :: Python', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: Implementation :: CPython', - 'Programming Language :: Python :: Implementation :: PyPy', - 'Operating System :: POSIX', - 'Operating System :: OS Independent', - 'Development Status :: 2 - Pre-Alpha', - 'License :: OSI Approved :: MIT License', - 'Topic :: Software Development :: Libraries' - - ] + test_suite='nose.collector' )