-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.41 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
52
[project]
name = "lsst-ctrl-execute"
requires-python = ">=3.11.0,<3.13.0"
description = "Utilities for executing and managing workloads."
license = {text = "BSD 3-Clause License"}
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",
"Topic :: Scientific/Engineering :: Astronomy",
]
keywords = ["lsst"]
dependencies = [
"lsst-ctrl-bps-htcondor>=28.2024.5000; sys_platform == 'linux'",
"lsst-pex-config",
"lsst-resources",
"lsst-utils",
]
dynamic = ["version"]
[dependency-groups]
dev = [
"pre-commit>=4.0.1",
"pytest",
"pytest-xdist",
"pytest-cov",
]
[project.urls]
"Homepage" = "https://github.com/lsst/ctrl_execute"
[project.scripts]
"allocateNodes.py" = "lsst.ctrl.execute.libexec.allocateNodes:main"
"dagIdInfo.py" = "lsst.ctrl.execute.libexec.dagIdInfo:main"
"qdelete.py" = "lsst.ctrl.execute.libexec.qdelete:main"
"qstatus.py" = "lsst.ctrl.execute.libexec.qstatus:main"
[build-system]
requires = ["hatchling", "lsst-versions >= 1.6.0"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "lsst"
[tool.hatch.build.targets.wheel]
packages = ["python/lsst"]