-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (34 loc) · 1.32 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
[project]
name = "gstools-core"
dependencies = ["numpy>=1.20.0,<2"]
license = { file = "LICENSE" }
requires-python = ">=3.10"
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",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Hydrology",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://geostat-framework.org/#gstools"
Documentation = "https://github.com/GeoStat-Framework/GSTools-Core"
Source = "https://github.com/GeoStat-Framework/GSTools-Core"
Changelog = "https://github.com/GeoStat-Framework/GSTools-Core/commits"
Tracker = "https://github.com/GeoStat-Framework/GSTools-Core/issues"
[build-system]
requires = ["maturin>=1.5.1,<2.0"]
build-backend = "maturin"