-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 892 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 892 Bytes
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
[project]
name = "catch-sis-harvester"
description = "Metadata harvesting for the CATCH and SBN Survey Image Service tools"
readme = "README.md"
authors = [{ name = "Michael S. P. Kelley", email = "msk@astro.umd.edu" }]
license = { text = "BSD 3-Clause License" }
dependencies = [
"numpy",
"astropy>=6.1",
"pds4_tools>=1.3",
"catch>1.4",
"sbn_survey_image_service",
"lxml",
]
dynamic = ["version"]
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = 'setuptools.build_meta'
[tool.setuptools_scm]
write_to = "cs_harvester/version.py"
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
[project.scripts]
harvest-atlas = "cs_harvester.add.atlas:main"
harvest-skymapper = "cs_harvester.add.skymapper:main"
harvest-spacewatch = "cs_harvester.add.spacewatch:main"
harvest-css = "cs_harvester.add.css:main"