Skip to content

Commit 1f2f84d

Browse files
Added workflow and dependencies
1 parent 46df29f commit 1f2f84d

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.github/workflows/publish.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
17+
python3 -m pip install --upgrade twine
18+
python3 -m twine upload --repository testpypi dist/*
19+

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ classifiers = [
1818
"License :: OSI Approved :: MIT License",
1919
"Operating System :: OS Independent",
2020
]
21+
dependencies = [
22+
"pycrypto"
23+
]
2124

2225
[project.urls]
2326
"Homepage" = "https://github.com/IABTechLab/uid2-client-python"

0 commit comments

Comments
 (0)