-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (34 loc) · 958 Bytes
/
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
[project]
name = "krait-kit"
description = "A versatile Python package for managing and organizing various utilities and tools, including logging, packaging, path handling, and signaled properties."
readme = "README.md"
requires-python = ">=3.8"
version = "25.2.0"
dependencies = [
# all dependencies here
"importlib-metadata>=8.5.0",
"pyyaml>=6.0.2",
]
dynamic = [
# "version",
# other dynamic fields here
]
[project.optional-dependencies]
ci = ["packaging", "tomlkit"]
all = []
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch]
metadata.allow-direct-references = true
build.packages = [
"/packages/lib/src/krait",
"/packages/logging/src/krait",
"/packages/package/src/krait",
"/packages/path/src/krait",
"/packages/signal/src/krait",
# more packages here
]
[tool.ruff.lint]
pydocstyle.convention = "numpy"
extend-select = ["C", "N", "SIM", "PTH", "I", "PL", "FURB", "D"]