-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (46 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
57 lines (46 loc) · 1.6 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling", "hatch-requirements-txt", "hatch-vcs"]
[project]
name = "gspy"
authors = [
{ name = "Leon Foks", email = "nfoks@contractor.usgs.gov" },
{ name = "Stephanie James", email = "sjames@usgs.gov" },
{ name = "Burke Minsley", email = "bminsley@usgs.gov" }
]
description = "gspy converts commonly used data formats into a netcdf file honoring our GS convention."
dynamic = ["version", "dependencies", "urls"]
keywords = ["netcdf", "xarray"]
classifiers = [
'License :: OSI Approved',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering'
]
readme = {file = "README.rst", content-type = "text/x-rst"}
requires-python = ">=3.10"
# Version control
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
version_scheme = "no-guess-dev"
[tool.hatch.build.hooks.vcs]
version-file = "gspy/_version.py"
[tool.hatch.metadata.hooks.vcs]
[tool.hatch.metadata.hooks.vcs.urls]
Documentation = "https://usgs.github.io/gspy/"
Issues = "https://https://github.com/usgs/gspy/issues"
Source = "https://https://github.com/usgs/gspy"
Homepage = "https://usgs.github.io/gspy/"
source_archive = "https://usgs.github.io/gspy/archive/{commit_hash}.zip"
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[project.optional-dependencies]
docs = ["sphinx_gallery",
"sphinx_rtd_theme"]
dev = ["gspy[docs]",
"twine"]
[tool.hatch.build.targets.wheel]
packages = ["gspy"]
[tool.hatch.build.targets.wheel.force-include]
"examples" = "gspy/examples"