-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.02 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
[tool.poetry]
name = "domainlab"
version = "0.7.1"
readme = "README.md"
repository = "https://github.com/marrlab/DomainLab"
homepage = "https://marrlab.github.io/DomainLab/"
description = "Library of modular domain generalization for deep learning"
authors = ["Xudong Sun <smilesun.east@gmail.com>", "Carla Feistner", "Alexej Gossmann <alexej.gossmann@fda.hhs.gov>", "et. al."]
[tool.poetry.dependencies]
python = "^3.9"
setuptools = "^69.5.1"
numpy = "^1.23.4"
matplotlib = "^3.9.0"
seaborn = "^0.13.2"
torchmetrics = "^0.10.0"
torch = "^1.12.0"
torchvision = "^0.13.0"
pillow = "^9.3.0"
rich = "^13.3.1"
pandas = "^1.5.1"
scikit-learn = "^1.2.1"
pyyaml = "^6.0"
gdown = "^4.7.1"
backpack-for-pytorch = "^1.6.0"
[tool.poetry.scripts]
domainlab = 'domainlab.cli:domainlab_cli'
[tool.poetry.group.dev.dependencies]
pytest = "^6.2.5"
pytest-cov = "^4.1.0"
pytest-shell = "^0.3.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.'MESSAGES CONTROL']
disable=[
'no-name-in-module'
]