-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.19 KB
/
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 = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "wassncplot"
description = "WASSncplot is a small tool to plot NetCDF 3D data generated with WASS on top of the original image files."
readme = "README.md"
requires-python = ">=3.9"
keywords = ["WASS"]
license = {text = "GPL3"}
authors = [
{email = "[email protected]"},
{name = "Filippo Bergamasco"}
]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta"
]
dependencies = [
"numpy", "scipy", "pyopengl", "PyQt6; platform_system!='Linux'", "matplotlib", "vispy", "tqdm", "opencv-python>=4.0", "netcdf4"
]
dynamic = ["version"]
[project.urls]
#homepage = "https://sites.google.com/unive.it/wass"
#documentation = "https://readthedocs.org"
repository = "https://github.com/fbergama/wassncplot"
#changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
[project.scripts]
wassncplot = "wassncplot.wassncplot2:wassncplot_main"
[tool.setuptools.dynamic]
version = {attr = "wassncplot.wassncplot2.VERSION"}
# ... other project metadata fields as specified in:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/