-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (53 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
63 lines (53 loc) · 1.26 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
[build-system]
requires = ["setuptools>=69", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "detritalpy"
dynamic = ["version"]
description = "A Python-based toolset for visualizing and analyzing detrital geo-thermochronologic data"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{name = "Glenn Sharman", email = "gsharman@uark.edu"}
]
license = {text = "Apache License 2.0"}
keywords = [
"detrital",
"zircon",
"provenance",
"stratigraphy",
"geochronology",
"thermochronology"
]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
dependencies = [
"numpy",
"matplotlib>=3.8",
"matplotlib-inline>=0.1.6",
"ipykernel>=6.0",
"pandas",
"xlrd",
"folium",
"vincent",
"simplekml",
"scipy",
"scikit-learn>=1.7",
"kdepy",
"peakutils",
"openpyxl",
"xlsxwriter"
]
[project.urls]
Homepage = "https://github.com/grsharman/detritalpy"
Repository = "https://github.com/grsharman/detritalpy"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools_scm]
write_to = "detritalpy/_version.py"
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"