Version 0.0.5
This commit is contained in:
parent
d8d8436325
commit
5ff7ff6b2d
2 changed files with 16 additions and 1 deletions
15
.drone.yml
15
.drone.yml
|
@ -24,3 +24,18 @@ steps:
|
||||||
when:
|
when:
|
||||||
event:
|
event:
|
||||||
- tag
|
- tag
|
||||||
|
|
||||||
|
- name: promote
|
||||||
|
image: python:3
|
||||||
|
environment:
|
||||||
|
TWINE_USERNAME: __token__
|
||||||
|
TWINE_PASSWORD:
|
||||||
|
from_secret: pypi_token
|
||||||
|
commands:
|
||||||
|
- pip install twine setuptools wheel
|
||||||
|
- python setup.py sdist bdist_wheel
|
||||||
|
- twine check dist/*
|
||||||
|
- twine upload dist/*
|
||||||
|
when:
|
||||||
|
target:
|
||||||
|
- production
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -6,7 +6,7 @@ with open("README.md", "r") as fh:
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="bytetrie",
|
name="bytetrie",
|
||||||
version="0.0.4",
|
version="0.0.5",
|
||||||
url="https://git.friedl.net/incubator/bytetrie",
|
url="https://git.friedl.net/incubator/bytetrie",
|
||||||
license="MIT",
|
license="MIT",
|
||||||
author="Armin Friedl",
|
author="Armin Friedl",
|
||||||
|
|
Loading…
Reference in a new issue