1
0
Fork 0
mirror of https://github.com/shouptech/humulus.git synced 2026-02-03 17:09:44 +00:00

Compare commits

...

3 commits

Author SHA1 Message Date
9f1d6ff37c Bump version to 0.1.0.dev (to reflect work on 0.1) 2019-07-24 13:36:27 -06:00
e524dded04 Bump version to 0.0.2
This is a rollup of much of the work for milestone 0.1.

This release is mainly for testing proper distribution of tagged versions.
2019-07-24 13:16:52 -06:00
c2f19d2960
Add drone and classifiers (#43)
Closes #42
2019-07-24 13:14:58 -06:00
3 changed files with 27 additions and 4 deletions

View file

@ -92,11 +92,26 @@ steps:
password:
from_secret: DOCKER_PASSWORD
repo: shouptech/humulus
tags:
- ${DRONE_TAG}
auto_tag: true
when:
event:
- 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:
- test

View file

@ -50,5 +50,13 @@ setup(
install_requires=install_requires,
setup_requires=install_requires + ["pytest-runner"],
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",
],
)

View file

@ -14,4 +14,4 @@
# The 'dev' portion of this variable will get updated during Drone CI builds
# with a build number for all non-tagged builds.
__version__ = "0.0.1.dev"
__version__ = "0.1.dev"