-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (67 loc) · 2.11 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (67 loc) · 2.11 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cubegenpy"
version = "0.2.1"
description = "Build PDS4-compliant FITS cubes for Cassini UVIS observations"
readme = "README.md"
requires-python = ">= 3.12, <4"
license = {text = "Apache-2.0"}
authors = [{name = "K.-Michael Aye", email = "kmichael.aye@gmail.com"}]
keywords = ["Cassini", "UVIS", "FITS", "PDS4", "planetary"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"numpy",
"astropy",
# 0.9.2 fixes UVPDS raising on products without _CAL_? files, which the
# production path hits constantly now that fetch_product delivers the .DAT.
"pyuvis>=0.9.2",
"planetarypy>=0.55.0",
"lxml",
# The data-definition workbook is the source of truth for the FITS layout
# (cubegenpy.template); openpyxl is what lets pandas read the .xlsx.
"pandas",
"openpyxl",
]
[project.urls]
Homepage = "https://github.com/Cassini-UVIS/cubegenpy"
Repository = "https://github.com/Cassini-UVIS/cubegenpy"
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "build", "twine"]
docs = ["jupyter", "nbformat"]
[tool.hatch.build.targets.wheel]
packages = ["src/cubegenpy"]
[tool.hatch.build.targets.sdist]
include = [
"src/cubegenpy",
"README.md",
"CHANGELOG.md",
"CITATION.cff",
"LICENSE",
"pyproject.toml",
]
[tool.bumpversion]
current_version = "0.2.1"
commit = true
tag = true
tag_name = "v{new_version}"
tag_message = "v{new_version}"
allow_dirty = false
message = "bump version: {current_version} → {new_version}"
[[tool.bumpversion.files]]
filename = "src/cubegenpy/__init__.py"
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'