-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathpyproject.toml
49 lines (40 loc) · 1.01 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[project]
name = "motrackers"
version = "0.0.2"
description = "Multi-object trackers in Python"
authors = [
{name = "Aditya M. Deshpande", email = "adityadeshpande2010@gmail.com"}
]
license = {file = "LICENSE.txt"}
readme = "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.optional-dependencies]
docs = [
'sphinx',
'm2r2'
]
[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 = ["."]