Skip to content

Commit 4fa2efe

Browse files
committed
pep517
1 parent 1fab8cd commit 4fa2efe

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/workflows/publish-to-pypi.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@ jobs:
3030
uses: pypa/gh-action-pypi-publish@master
3131
with:
3232
password: ${{ secrets.test_pypi_token }}
33-
repository_url: https://test.pypi.org/legacy/
33+
repository_url: https://test.pypi.org/legacy/
34+
skip_existing: true
3435
- name: Publish distribution 📦 to PyPI
3536
if: startsWith(github.ref, 'refs/tags')
3637
uses: pypa/gh-action-pypi-publish@master
3738
with:
3839
password: ${{ secrets.pypi_token }}
40+
skip_existing: true
3941

pyproject.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[tool.poetry]
2+
name = "openfeed"
3+
version = "1.0.2"
4+
description = "Python SDK for Openfeed"
5+
authors = ["Barchart <[email protected]>"]
6+
7+
[tool.poetry.dependencies]
8+
python = "*"
9+
websocket-client = "^0.40.0"
10+
protobuf = "*"
11+
12+
[tool.poetry.dev-dependencies]
13+
pytest = "^3.4"
14+
15+
[build-system]
16+
requires = ["poetry>=0.12"]
17+
build-backend = "poetry.masonry.api"

0 commit comments

Comments
 (0)