-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 1.3 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
[project]
name = "cubevis"
dynamic = ["version"]
description = "visualization toolkit and apps for casa"
authors = [
{name = "Darrell Schiebel", email = "darrell@schiebel.us"},
{name = "Pam Harris", email = "pharris@nrao.edu"},
]
dependencies = [
"bokeh>=3.6, <3.9",
"astropy>=5.1",
"regions>=0.8",
"websockets>=10.3",
"certifi",
"matplotlib",
]
requires-python = ">=3.11"
readme = "README.rst"
license = {text = "LGPL"}
[project.urls]
"Homepage" = "https://github.com/casangi/cubevis?tab=readme-ov-file#cubevis---visualization-tools-for-casa-images"
"Source" = "https://github.com/casangi/cubevis"
"Bug Tracker" = "https://github.com/casangi/cubevis/issues"
[tool]
[tool.pdm]
[tool.pdm.build]
excludes = [ "cubevis/apps/*.mustache", "cubevis/private/casashell/*.mustache", "cubevis/private/casatasks/*.mustache", "**/*.xml", "**/*.py-*", "**/*~" ]
[tool.pdm.version]
source = "scm"
write_to = "cubevis/__version__.py"
write_template = "__version__ = '{}'" # optional, default to "{}"
[build-system]
requires = ["pdm-pep517>=0.12.0"]
build-backend = "pdm.pep517.api"
[tool.pdm.scripts]
#separate versions for casalib and cubevisjs are no longer
#necessary [Mon Sep 29 15:58:15 EDT 2025]
#capture-js = {call = "scripts.capture_js_versions:main"}
build = {composite = ["capture-js", "pdm build"]}