-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (41 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
50 lines (41 loc) · 1.19 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
[build-system]
requires = ["setuptools"]
[project]
name = "hhnk-threedi-tools"
version = "2025.1"
description = "Tools for threedi model analysis"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name = "Wietse van Gerwen", email = "w.vangerwen@hhnk.nl" },
{ name = "Laure Ravier" },
{ name = "Bastiaan Roos" }
]
maintainers = [
{ name = "Wietse van Gerwen" }
]
keywords = []
[project.urls]
repository = "https://github.com/threedi/hhnk-threedi-tools"
[tool.setuptools]
packages = { find = { where = ["hhnk_threedi_tools"] } }
include-package-data = true
# FORMATTING
[tool.ruff]
# see https://docs.astral.sh/ruff/rules/ for meaning of rules
line-length = 119
#Exclude external packages in formatter
extend-exclude = ["hhnk_threedi_tools/external/**/*.py", ".pixi/*", "deprecated/*", "tests/rioxarraytesting/*"]
include = ["*.py"]
[tool.ruff.lint]
select = ["D", "E", "F", "NPY", "PD", "C4", "I"]
ignore = ["D1", "D202", "D205", "D400", "D404", "E501", "PD002", "PD901"]
fixable = ["I"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.lint.per-file-ignores]
# Ignore unused imports in init
"__init__.py" = ["F401", "I001"]
[tool.pylint]
disable = ["W1203"]