Merge pull request 'added pypi publish functionality' (#2) from add-publish-to-pypi-ci-step into main
Python Code Quality / python-code-quality (push) Successful in 11s
Python Test / python-test (push) Successful in 12s
Publish Python Package / build-and-publish (push) Failing after 10s

Reviewed-on: #2
This commit was merged in pull request #2.
This commit is contained in:
2026-01-08 13:52:51 +01:00
2 changed files with 15 additions and 0 deletions
+6
View File
@@ -33,3 +33,9 @@ jobs:
UV_PUBLISH_URL: ${{ vars.REPOSITORY_URL }}
run: |
uv publish
- name: Publish to PyPI
env:
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
run: |
uv publish --repository pypi
+9
View File
@@ -7,10 +7,19 @@ authors = [
]
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICENSE"]
dependencies = [
"cryptography>=46.0.3",
]
[project.urls]
source = "https://gitea.gt-proj.com/brian/python-encrypt-code"
[project.scripts]
python-encrypt-code = "python_encrypt_code.__main__:main"