-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
92 lines (83 loc) · 2.7 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
# Minimum requirements for the build system to execute
requires = ["setuptools>64"]
build-backend = "setuptools.build_meta"
[project]
name = "ttim"
dynamic = ["version"]
description = "Transient multi-layer AEM Model"
license = { file = "LICENSE" }
readme = "README.md"
authors = [{ name = "Mark Bakker" }]
maintainers = [
{ name = "Mark Bakker", email = "[email protected]" },
{ name = "Davíd Brakenhoff", email = "[email protected]" },
]
requires-python = ">= 3.10"
dependencies = ["numpy", "scipy", "numba", "matplotlib", "lmfit", "pandas"]
keywords = ["hydrology", "groundwater", "model", "analytic element method"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Hydrology",
]
[project.urls]
homepage = "https://github.com/mbakker7/ttim"
repository = "https://github.com/mbakker7/ttim"
documentation = "http://mbakker7.github.io/ttim/docs/builddocs/html/index.html"
[project.optional-dependencies]
ci = ["pytest>=4.6", "pytest-cov", "jupyter>=1.0.0", "shapely", "flake8", "coveralls"]
docs = [
"ttim[ci]",
"sphinx",
"sphinx-design",
"pydata-sphinx-theme",
"numpydoc",
"myst_nb",
"sphinxcontrib-bibtex",
"sphinx-autoapi",
]
[tool.setuptools]
packages = ["ttim"]
[tool.setuptools.dynamic]
version = { attr = "ttim.version.__version__" }
[tool.ruff]
line-length = 88
extend-include = ["*.ipynb"]
[tool.ruff.lint]
# See: https://docs.astral.sh/ruff/rules/
select = [
"C4", # flake8-comprehensions
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"PT", # pytest-style
"D", # pydocstyle
"B", # flake8-bugbear
"NPY", # numpy
]
ignore = [
"D100", # Missing docstring in public module
"D101", # Missing docstring in public class
"D102", # Missing docstring in public method
"D103", # Missing docstring in public function
"D105", # Missing docstring in magic method
"D401", # First line should be in imperative mood
"B006", # Do not use mutable data structures as default arguments
]
[tool.ruff.lint.pydocstyle]
convention = "numpy"