1
0
mirror of https://github.com/pypiserver/pypiserver synced 2025-02-16 23:09:34 +01:00

Updated setup.py classifiers

* Added Python 3.6 to languages
* Added PyPy implementation
* Also updated some minor spacing issues
This commit is contained in:
Matthew Planchard 2017-11-29 19:39:06 -06:00
parent 861aa73534
commit 2cc5016015
2 changed files with 4 additions and 2 deletions

@ -56,7 +56,7 @@ class auth(object):
@app.hook('before_request')
def log_request():
log.info(config. log_req_frmt, request.environ)
log.info(config.log_req_frmt, request.environ)
@app.hook('after_request')

@ -44,7 +44,7 @@ setup(name="pypiserver",
tests_require=tests_require,
url="https://github.com/pypiserver/pypiserver",
maintainer=("Kostis Anagnostopoulos <ankostis@gmail.com>"
"Matthew Planchard <mplanchard@gmail.com>"),
"Matthew Planchard <mplanchard@gmail.com>"),
maintainer_email="ankostis@gmail.com",
classifiers=[
"Development Status :: 5 - Production/Stable",
@ -63,6 +63,8 @@ setup(name="pypiserver",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Software Distribution"],
zip_safe=True,