Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
fix(pyproject.toml & GA): Made sure that the pyproject.toml is correc…
…t and GA doesn't have any errors.
  • Loading branch information
edavalosanaya committed May 10, 2023
commit fdb209f11e875fbc57b8d21c99badc82ad463573
6 changes: 1 addition & 5 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 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 = "[email protected]"},
{name = "Aditya M. Deshpande", email = "[email protected]"}
]
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