Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,12 @@ jobs:

steps:
- name: Checkout source
- uses: actions/checkout@v3
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build

- name: Build source and wheel distributions
run: |
Expand All @@ -38,11 +34,12 @@ jobs:
twine check --strict dist/*

- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}

# https://github.com/actions/first-interaction/issues/10#issuecomment-1475121828
- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[project]
name = "motrackers"
version = "v0.0.1"
version = "0.0.1"
description = "Multi-object trackers in Python"
authors = [
{name = "Aditya M. Deshpande", email = "adityadeshpande2010@gmail.com"},
{name = "Aditya M. Deshpande", email = "adityadeshpande2010@gmail.com"}
]
license = {file = "LICENSE.txt"}
readme = "[README.md](http://readme.md/)"
readme = "README.md"
requires-python = ">3.6"

keywords = ["tracking", "object", "multi-object", "python"]
Expand Down