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(packaging): Added pyproject.toml and updated README.md
  • Loading branch information
edavalosanaya committed May 8, 2023
commit ff03f3df824151cec8193db001095ab925a7ba01
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ Pip install for OpenCV (version 3.4.3 or later) is available [here](https://pypi
```
git clone https://github.com/adipandas/multi-object-tracker
cd multi-object-tracker
pip install -r requirements.txt
pip install -e .
pip install [-e] .
```

**Note - for using neural network models with GPU**
Expand Down
42 changes: 42 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[project]
name = "motrackers"
version = "0.0.1"
description = "Multi-object trackers in Python"
authors = [
{name = "Aditya M. Deshpande", email = "[[email protected]](mailto:[email protected])"},
]
license = {file = "LICENSE.txt"}
readme = "[README.md](http://readme.md/)"
requires-python = ">3.6"

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

classifiers = [
"Programming Language :: Python :: 3"
]

dependencies = [
"numpy",
"scipy",
"matplotlib",
"opencv-python",
"pandas",
"motmetrics",
"setuptools"
]

[project.urls]
homepath = "[https://adipandas.github.io/multi-object-tracker/](https://adipandas.github.io/multi-object-tracker/)"
repository = "[https://github.com/adipandas/multi-object-tracker](https://github.com/adipandas/multi-object-tracker)"

[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

# [https://setuptools.pypa.io/en/stable/userguide/datafiles.html](https://setuptools.pypa.io/en/stable/userguide/datafiles.html)

[tool.setuptools]
include-package-data = true

[tool.setuptools.packages.find]
where = ["."]
8 changes: 0 additions & 8 deletions requirements.txt

This file was deleted.

18 changes: 0 additions & 18 deletions setup.py

This file was deleted.