-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
executable file
·58 lines (52 loc) · 1.31 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
[build-system]
build-backend = "scikit_build_core.build"
requires = [
"scikit-build-core",
"pybind11",
"numpy>=2.0.0"
]
[project]
name = "topotoolbox"
version = "0.0.1"
authors = [
{name="Wolfgang Schwanghart", email="w.schwanghart@geo.uni-potsdam.de"},
{name="Dirk Scherler", email="scherler@fz-potsdam.de"},
{name="Will Kearney", email="william.kearney@uni-potsdam.de"},
{name="Theo Bringezu", email="theophil.bringezu@uni-potsdam.de"}
]
description = "Python interface to TopoToolbox."
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"numpy",
"matplotlib",
"scipy",
"rasterio"
]
requires-python = ">=3.10"
keywords = ["TopoToolbox"]
classifiers = []
[project.optional-dependencies]
opensimplex = ["opensimplex"]
test = [
"pytest",
"opensimplex"
]
[project.urls]
Homepage = "https://topotoolbox.github.io"
Repository = "https://github.com/TopoToolbox/pytopotoolbox"
Issues = "https://github.com/TopoToolbox/pytopotoolbox/issues"
[tool.scikit-build]
wheel.expand-macos-universal-tags = true
[tool.pylint]
disable = [
"too-many-instance-attributes",
"too-many-arguments",
"too-many-branches",
"too-many-statements",
"too-many-locals",
"duplicate-code",
"cyclic-import",
"too-many-positional-arguments",
"too-many-lines",
]