-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 767 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 767 Bytes
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
[project]
name = "gradient_agreement_filtering"
version = "0.1.3"
description = "Gradient Agreement Filtering (GAF) Package"
authors = [
{ name="Francois Chaubard", email="fchaubard@gmail.com" }
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"torch>=2.0.0",
"torchvision>=0.16.0",
"numpy>=1.2.0",
]
# Add dev dependencies
[project.optional-dependencies]
dev = [
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"wandb>=0.19.0",
]
all = [
"wandb>=0.19.0",
]
[tool.setuptools]
py-modules = ['gradient_agreement_filtering']
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*"]
[project.urls]
Homepage = "https://github.com/Fchaubard/gradient_agreement_filtering"