-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (47 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (47 loc) · 1.27 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
51
52
53
54
55
56
[project]
name = "bruggeman"
description = "Repository for the Bruggeman equations from Analytical Solutions of Geohydrological Problems (1999)"
readme = "README.md"
authors = [{ name = "Davíd Brakenhoff", email = "d.brakenhoff@artesia-water.nl" }]
requires-python = ">=3.12"
dependencies = ["numpy", "scipy", "mpmath"]
dynamic = ["version"]
[project.scripts]
bruggeman = "bruggeman:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "bruggeman/__about__.py"
[tool.hatch.metadata]
allow-direct-references = true
[project.optional-dependencies]
sympy = ["sympy"]
ci = ["pytest", "pytest-cov", "nbformat", "nbconvert", "mypy", "ruff"]
docs = [
"matplotlib",
"bruggeman[sympy]",
"Ipython",
"ipykernel",
"pydata-sphinx-theme",
"sphinx",
"sphinxcontrib-bibtex",
"numpydoc",
"sphinx-design",
"myst_nb",
"timflow",
]
dev = ["bruggeman[ci,docs]"]
[tool.ruff]
extend-include = ["*.ipynb"]
lint.extend-select = ["I"]
show-fixes = true
fix = true
[tool.pytest.ini_options]
addopts = "--strict-markers --durations=0"
markers = ["notebooks: run notebooks"]
[tool.mypy]
mypy_path = "bruggeman"
[[tool.mypy.overrides]]
module = ["scipy.special.*", "sympy.*", "mpmath.*"]
ignore_missing_imports = true