-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.48 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (48 loc) · 1.48 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
[build-system]
requires = [
"setuptools>=61",
"wheel",
"numpy>=1.21.0",
"meson",
"ninja"
]
build-backend = "setuptools.build_meta"
[project]
name = "pygtide"
version = "0.9.1"
description = "A Python module and wrapper for ETERNA PREDICT to compute gravitational tides on Earth"
readme = "README.md"
license = "MPL-2.0"
requires-python = ">=3.10"
authors = [
{ name = "Gabriel C. Rau", email = "gabriel@hydrogeo.science" },
{ name = "Tom Eulenfeld", email = "tom.eulenfeld@uni-jena.de" },
{ name = "Craig Miller", email = "craig.miller@earthsciences.nz" },
]
dependencies = [
"numpy>=1.21.0",
"pandas",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Physics"
]
[project.urls]
Homepage = "https://github.com/hydrogeoscience/pygtide"
Documentation = "https://hydrogeo.science"
Repository = "https://github.com/hydrogeoscience/pygtide.git"
Issues = "https://github.com/hydrogeoscience/pygtide/issues"
# ----------------------------
# Setuptools-specific configuration
# ----------------------------
[tool.setuptools]
packages = ["pygtide"]
[tool.setuptools.package-data]
pygtide = ["etpred.*", "commdat/*"]