-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 826 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 826 Bytes
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
[build-system]
requires = ["setuptools", "setuptools-scm", "numpy", "netCDF4", "cftime"]
build-backend = "setuptools.build_meta"
[project]
name = "GenTS"
version = "0.9.9"
authors = [
{ name="Cameron Cummins", email="cameron.cummins@utexas.edu" },
]
description = "A useful tool for post-processing Earth System Model output 'history files' into the time series format."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy",
"netcdf4",
"cftime"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/AgentOxygen/GenTS"
Issues = "https://github.com/AgentOxygen/GenTS"
[tool.setuptools]
packages = ["gents"]
[project.scripts]
run_gents = "gents.cli:main"