-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (32 loc) · 927 Bytes
/
pyproject.toml
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "pyncview"
dynamic = ["version"]
readme = "README.md"
dependencies = [
"xmlplot>=0.9.28",
]
authors = [
{name = "Jorn Bruggeman", email = "[email protected]"}
]
description = "NetCDF viewer written in Python"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable"
]
[project.urls]
"Homepage" = "https://github.com/BoldingBruggeman/pyncview"
[project.scripts]
multiplot = "pyncview.multiplot:main"
[project.gui-scripts]
pyncview = "pyncview.pyncview:main"
[tool.hatch.build.targets.sdist]
only-include = ["pyncview"]
[tool.hatch.version]
source = "vcs"