-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpyproject.toml
More file actions
119 lines (105 loc) · 3.12 KB
/
pyproject.toml
File metadata and controls
119 lines (105 loc) · 3.12 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[build-system]
requires = ["hatchling>=1.8.0", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
requires-python = ">=3.8"
name = "gstools"
description = "GSTools: A geostatistical toolbox."
authors = [
{ name = "Sebastian Müller, Lennart Schüler", email = "info@geostat-framework.org" },
]
readme = "README.md"
license = "LGPL-3.0"
dynamic = ["version"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Natural Language :: English",
"Operating System :: Unix",
"Operating System :: Microsoft",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Hydrology",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Utilities",
]
dependencies = [
"gstools-cython>=1,<2",
"emcee>=3.0.0",
"hankel>=1.0.0",
"meshio>=5.1.0",
"numpy>=1.20.0",
"pyevtk>=1.1.1",
"scipy>=1.1.0",
]
[project.optional-dependencies]
doc = [
"myst_parser",
"matplotlib>=3.7",
"meshzoo>=0.7",
"numpydoc>=1.1",
"pykrige>=1.5,<2",
"pyvista>=0.40",
"sphinx>=7",
"sphinx-gallery>=0.8",
"sphinx-rtd-theme>=3",
"sphinxcontrib-youtube>=1.1",
]
plotting = ["matplotlib>=3.7", "pyvista>=0.40"]
rust = ["gstools_core>=1.0.0"]
test = ["pytest-cov>=3"]
lint = ["ruff"]
[project.urls]
Changelog = "https://github.com/GeoStat-Framework/GSTools/blob/main/CHANGELOG.md"
Conda-Forge = "https://anaconda.org/conda-forge/gstools"
Documentation = "https://gstools.readthedocs.io"
Homepage = "https://geostat-framework.org/#gstools"
Source = "https://github.com/GeoStat-Framework/GSTools"
Tracker = "https://github.com/GeoStat-Framework/GSTools/issues"
[tool.hatch.version]
source = "vcs"
fallback_version = "0.0.0.dev0"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.hatch.build.hooks.vcs]
version-file = "src/gstools/_version.py"
template = "__version__ = '{version}'"
[tool.hatch.build.targets.sdist]
include = ["/src", "/tests"]
[tool.hatch.build.targets.wheel]
packages = ["src/gstools"]
[tool.ruff]
line-length = 79
target-version = "py38"
[tool.ruff.lint]
select = [
"F",
"I",
]
[tool.coverage]
[tool.coverage.run]
source = ["gstools"]
omit = [
"*docs*",
"*examples*",
"*tests*",
"*/src/gstools/covmodel/plot.py",
"*/src/gstools/field/plot.py",
]
[tool.coverage.report]
exclude_lines = ["pragma: no cover", "def __repr__", "def __str__"]