-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 755 Bytes
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 755 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "chest_x_ray_classification"
version = "0.0.1"
description = "A comprehensive data analysis of chest X-ray images"
authors = [
{ name = "Songyu Yang" },
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
]
requires-python = "~=3.10.0"
[tool.ruff]
line-length = 99
src = ["chest_x_ray_classification"]
include = ["pyproject.toml", "chest_x_ray_classification/**/*.py"]
[tool.ruff.lint]
extend-select = ["I"] # Add import sorting
[tool.ruff.lint.isort]
known-first-party = ["chest_x_ray_classification"]
force-sort-within-sections = true