1
0
Fork 0
mirror of https://github.com/shouptech/humulus.git synced 2026-02-03 14:49:42 +00:00

Add drone and classifiers (#43)

Closes #42
This commit is contained in:
Emma 2019-07-24 13:14:58 -06:00 committed by GitHub
parent 4db11b91b7
commit c2f19d2960
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 3 deletions

View file

@ -92,11 +92,26 @@ steps:
password: password:
from_secret: DOCKER_PASSWORD from_secret: DOCKER_PASSWORD
repo: shouptech/humulus repo: shouptech/humulus
tags: auto_tag: true
- ${DRONE_TAG}
when: when:
event: event:
- tag - tag
- name: pypi-release
image: python:3.6
environment:
TWINE_USERNAME:
from_secret: TWINE_USERNAME
TWINE_PASSWORD:
from_secret: TWINE_PASSWORD
commands:
- pip install twine
- python setup.py sdist bdist_wheel
- twine upload dist/*
when:
event:
- tag
depends_on: depends_on:
- test - test

View file

@ -50,5 +50,13 @@ setup(
install_requires=install_requires, install_requires=install_requires,
setup_requires=install_requires + ["pytest-runner"], setup_requires=install_requires + ["pytest-runner"],
tests_require=["pytest"], tests_require=["pytest"],
classifiers=[], classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Flask",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
) )