Merge pull request #195 from mplanchard/classifier-update

Updated setup.py classifiers
This commit is contained in:
Kostis Anagnostopoulos 2017-12-04 00:19:13 +02:00 committed by GitHub
commit c6b52633fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

@ -28,7 +28,7 @@ gitversion=$(git describe --tags)
rm -rf .standalone
if nwd_dump=$( "$git_wdir" . .standalone standalone 2>&1 ); then
./bin/gen-standalone.sh
mkdir .standalone
mkdir -p .standalone
cp -p pypi-server-standalone.py .standalone
cd .standalone
if [ $# -lt 1 ]; then

@ -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,