-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (49 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
52 lines (49 loc) · 1.62 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 = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tcplotter"
version = "0.4.0"
authors = [
{name = "Dave Whipp", email = "david.whipp@helsinki.fi"},
]
#maintainers = [
# {name = "All the contributors"},
#]
description = "Plots thermochronometer ages and closure temperatures"
keywords = ["thermochronology", "geology", "geophysics"]
readme = "README.md"
requires-python = ">=3.10.0"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"matplotlib",
"numpy",
"scipy",
]
[project.urls]
homepage = "https://tcplotter.readthedocs.io/"
repository = "https://github.com/HUGG/tcplotter"
documentation = "https://tcplotter.readthedocs.io/"
[project.scripts]
time-vs-temp = "tcplotter.time_vs_temp:main"
eu-vs-radius = "tcplotter.eu_vs_radius:main"
rate-vs-radius-eu = "tcplotter.rate_vs_radius_eu:main"
rate-vs-age-tc = "tcplotter.rate_vs_age_tc:main"