Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
85ff5b34b2 | ||
|
|
a930b84d8c | ||
|
|
e098acd41c | ||
|
|
d14084309e | ||
|
|
736e51dc14 |
@@ -33,3 +33,9 @@ jobs:
|
|||||||
UV_PUBLISH_URL: ${{ vars.REPOSITORY_URL }}
|
UV_PUBLISH_URL: ${{ vars.REPOSITORY_URL }}
|
||||||
run: |
|
run: |
|
||||||
uv publish
|
uv publish
|
||||||
|
|
||||||
|
- name: Publish to PyPI
|
||||||
|
env:
|
||||||
|
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
|
||||||
|
run: |
|
||||||
|
uv publish
|
||||||
|
|||||||
+10
-1
@@ -1,16 +1,25 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "python-encrypt-code"
|
name = "python-encrypt-code"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
description = "Python-based command line tool to encrypt and decrypt Python modules."
|
description = "Python-based command line tool to encrypt and decrypt Python modules."
|
||||||
authors = [
|
authors = [
|
||||||
{ name = "Brian Bjarke Jensen", email = "[email protected]" }
|
{ name = "Brian Bjarke Jensen", email = "[email protected]" }
|
||||||
]
|
]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
|
classifiers = [
|
||||||
|
"Programming Language :: Python :: 3",
|
||||||
|
"Operating System :: OS Independent",
|
||||||
|
]
|
||||||
|
license = "MIT"
|
||||||
|
license-files = ["LICENSE"]
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cryptography>=46.0.3",
|
"cryptography>=46.0.3",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[project.urls]
|
||||||
|
source = "https://gitea.gt-proj.com/brian/python-encrypt-code"
|
||||||
|
|
||||||
[project.scripts]
|
[project.scripts]
|
||||||
python-encrypt-code = "python_encrypt_code.__main__:main"
|
python-encrypt-code = "python_encrypt_code.__main__:main"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user