-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 899 Bytes
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 899 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
[project]
name = "lfmc"
version = "0.1.0"
requires-python = ">=3.11"
[project.scripts]
add-splits-to-csv = "lfmc.main.add_splits_to_csv:main"
analyze-csv = "lfmc.main.analyze_csv:main"
augment-labels = "lfmc.main.augment_labels:main"
create-csv = "lfmc.main.create_csv:main"
create-h5pys = "lfmc.main.create_h5pys:main"
evaluate-model = "lfmc.main.evaluate_model:main"
finetune-model = "lfmc.main.finetune_model:main"
[tool.mypy]
python_version = 3.11
exclude = '^(galileo|lib|submodules)/'
explicit_package_bases = true
[[tool.mypy.overrides]]
module = "galileo.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "rasterio.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "sklearn.*"
ignore_missing_imports = true
[tool.setuptools]
packages = ["galileo", "lfmc"]
[tool.ruff]
exclude = ["galileo/", "submodules/"]
line-length = 120
lint.extend-select = ["I", "TID252"]