We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46df29f commit 1f2f84dCopy full SHA for 1f2f84d
.github/workflows/publish.yaml
@@ -0,0 +1,19 @@
1
+name: Publish
2
+
3
+on: [workflow_dispatch, push]
4
5
+jobs:
6
+ Publish:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - name: Build
12
+ run: |
13
+ python3 -m pip install --upgrade build
14
+ python3 -m build
15
+ - name: Publish
16
17
+ python3 -m pip install --upgrade twine
18
+ python3 -m twine upload --repository testpypi dist/*
19
pyproject.toml
@@ -18,6 +18,9 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
20
]
21
+dependencies = [
22
+ "pycrypto"
23
+]
24
25
[project.urls]
26
"Homepage" = "https://github.com/IABTechLab/uid2-client-python"
0 commit comments