-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (48 loc) · 1.25 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[project]
name = "cli"
version = "0.1.0"
description = "Effortlessly segment spectral images using the siapy package."
authors = [{ name = "janezlapajne", email = "[email protected]" }]
dependencies = [
"siapy>=0.4.0",
"loguru>=0.7.2",
"pydantic-settings>=2.4.0",
"typer>=0.12.3",
"xgboost>=2.1.1",
]
requires-python = "==3.10.*"
readme = "README.md"
license = { text = "MIT" }
[project.scripts]
siapy-cli = "main:app"
[tool.pdm]
distribution = true
[tool.pdm.build]
source-includes = ["source/", "main.py"]
[tool.pdm.scripts]
siapy-cli.cmd = "main.py"
siapy-cli.env_file.override = ".env"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.dev-dependencies]
lint = ["ruff>=0.4.8", "mypy>=1.10.1", "pandas-stubs>=2.2.2.240603"]
dev = ["pre-commit>=3.7.1", "tomli>=2.0.1", "codespell>=2.3.0"]
[tool.mypy]
mypy_path = "stubs"
[[tool.mypy.overrides]]
module = "spectral"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "sklearn.*"
ignore_missing_imports = true
[tool.ruff]
extend-exclude = []
exclude = []
lint.ignore = ["F811"]
src = ["source/", "main.py"]
[tool.codespell]
ignore-words-list = "janezlapajne"
skip = 'dist/*, docs, LICENCE, *.lock, *.toml, *.cff'
count = true
check-hidden = false