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
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
43 changes: 43 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
[project]
name = "motrackers"
version = "0.0.1"
description = "Multi-object trackers in Python"
authors = [
{name = "Aditya M. Deshpande", email = "[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",
"ipyfilechooser"
]

[project.urls]
homepath = "https://adipandas.github.io/multi-object-tracker"
repository = "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.