-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.38 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
39
40
41
42
43
44
45
46
47
48
49
50
51
[project]
name = "lsst-ctrl-platform-s3df"
description = "Configuration and template files for s3df ctrl-execute platform."
readme = "README.rst"
requires-python = ">=3.11"
authors = [
{name="Rubin Observatory Data Management", email="[email protected]"},
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Astronomy",
]
keywords = ["lsst"]
dynamic = ["version"]
dependencies = []
[dependency-groups]
dev = [
"lsst-ctrl-execute",
"pre-commit>=4.0.1",
"pytest",
"pytest-cov",
]
[tool.uv.sources]
lsst-ctrl-execute = { git = "https://github.com/lsst/ctrl_execute.git", rev = "main" }
[project.urls]
Source = "https://github.com/lsst/ctrl_platform_s3df"
[build-system]
requires = ["hatchling", "lsst-versions >= 1.6.0"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "lsst"
# Explicitly exclude and skip traversal of the symlink farm directory during build
# TODO: this is not needed if the symlink farm is removed.
[tool.hatch.build]
skip-excluded-dirs = true
exclude = ["/etc"]
[tool.hatch.build.targets.wheel]
packages = ["python/lsst"]