set up publish to pypi
This commit is contained in:
parent
7669da024a
commit
ea26f18906
1
.gitignore
vendored
1
.gitignore
vendored
@ -5,3 +5,4 @@ venv/
|
|||||||
cli_docs/_build/
|
cli_docs/_build/
|
||||||
tzk/editions/
|
tzk/editions/
|
||||||
dist/
|
dist/
|
||||||
|
build/
|
||||||
|
1
MANIFEST.in
Normal file
1
MANIFEST.in
Normal file
@ -0,0 +1 @@
|
|||||||
|
recursive-include tzk/editions *
|
7
publish.sh
Normal file
7
publish.sh
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
rm -f dist/*
|
||||||
|
mkdir -p dist
|
||||||
|
python setup.py sdist bdist_wheel
|
||||||
|
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
|
Loading…
Reference in New Issue
Block a user