Initial Commit

This commit is contained in:
2024-05-20 19:10:57 +02:00
commit fc8d2bb57b
7 changed files with 425 additions and 0 deletions

14
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,14 @@
image: python:3.8
stages:
- publish
pack:
stage: publish
script:
- pip install twine
- python setup.py sdist bdist_wheel
- python -m twine upload -u gitlab-ci-token -p $CI_JOB_TOKEN --repository-url $CI_API_V4_URL/projects/$CI_PROJECT_ID/packages/pypi dist/*
only:
- tags