-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.13 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (49 loc) · 1.13 KB
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "chexvision"
version = "0.1.0"
description = "Large-Scale Chest X-Ray Pathology Detection — Deep Learning & Big Data"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "BIG D(ATA) Team"},
]
dependencies = [
"torch>=2.1.0",
"torchvision>=0.16.0",
"numpy>=1.24.0",
"pandas>=2.0.0",
"Pillow>=10.0.0",
"opencv-python-headless>=4.8.0",
"scikit-learn>=1.3.0",
"matplotlib>=3.7.0",
"seaborn>=0.13.0",
"tqdm>=4.66.0",
"pyyaml>=6.0",
"huggingface-hub>=0.20.0",
"datasets>=2.16.0",
"streamlit>=1.30.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.4.0",
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"ipykernel>=6.29.0",
"jupyter>=1.0.0",
]
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"