-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
49 lines (40 loc) · 1.15 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "geonum"
authors = [{name = "Jonas Gliss", email = "jonasgliss@gmail.com"}]
description = "Toolbox for 3D geonumerical calculations and atmospheric composition"
readme = "README.rst"
license = {text = "GPLv3+"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9"
dynamic = ["version"]
dependencies = [
"numpy",
"scipy",
"matplotlib",
"LatLon23",
"SRTM.py",
"cartopy",
]
[project.optional-dependencies]
test = [
"pytest",
"netcdf4",
]
[project.urls]
"Homepage" = "https://github.com/jgliss/geonum"
"Documentation" = "https://geonum.readthedocs.io/en/latest/"
[tool.setuptools]
packages = ["geonum"]
[tool.setuptools_scm]