-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.55 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
50
51
52
53
54
55
56
57
[project]
name = "deepsport"
version = "1.6.0"
authors = [
{name = "Gabriel Van Zandycke", email = "[email protected]"},
]
description = "Experimentation framework for computer vision"
requires-python = "==3.10.*"
dependencies = [
"dill>=0.3.6",
"numpy>=1.22",
"calib3d>=2.10.0",
"pandas>=1.4.2",
"tensorflow[and-cuda]==2.15.1",
"python-dotenv>=0.21",
"scikit-learn>=1.2",
"jupyter>=1.0",
"matplotlib>=3.9.2",
"tf_layers @ git+https://github.com/gabriel-vanzandycke/tf_layers@main",
"icnet_tf2 @ git+https://github.com/gabriel-vanzandycke/icnet_tf2@master",
"experimentator",
"deepsport-utilities",
"dataset-utilities",
"mlworkflow",
]
readme = "README.md"
license = {file = "LICENSE.md"}
urls.Homepage = "https://github.com/gabriel-vanzandycke/deepsport"
[project.optional-dependencies]
wandb = ["wandb>=0.18.3"]
tensorboard = ["tensorboard-plugin-profile==2.15.1", "tensorboard==2.15.1", "tensorrt>=10.5.0"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib", # required to resolve imported python modules of git submodules
]
[tool.setuptools]
packages = ["models", "tasks"] # packages 'models' and 'tasks' folders
[tool.uv]
package = true # forces packaging 'deepsport'
dev-dependencies = ["pytest>=8.3"]
[tool.uv.workspace]
members = ["libs/*"]
[tool.uv.sources]
experimentator = { workspace = true }
deepsport-utilities = { workspace = true }
dataset-utilities = { workspace = true }
mlworkflow = { workspace = true }
[tool.ruff.lint]
ignore = ["E731", "E741"]
unfixable = []