-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (28 loc) · 1001 Bytes
/
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
[build-system]
requires = [ "setuptools", "setuptools_scm" ]
build-backend = "setuptools.build_meta"
[project]
name = "ts_watcher"
description = "A CSC which monitors other SAL components and issues alarms for the Vera C. Rubin Observatory."
license = { text = "GPL" }
classifiers = [ "Programming Language :: Python :: 3" ]
urls = { documentation = "https://ts-watcher.lsst.io", repository = "https://github.com/lsst-ts/ts_watcher" }
dynamic = [ "version" ]
[tool.setuptools.dynamic]
version = { attr = "setuptools_scm.get_version" }
[tool.setuptools.packages.find]
where = [ "python" ]
[project.scripts]
command_watcher = "lsst.ts.watcher:command_watcher"
run_watcher = "lsst.ts.watcher:run_watcher"
[tool.setuptools_scm]
write_to = "python/lsst/ts/watcher/version.py"
write_to_template = """
# Generated by setuptools_scm
__all__ = ["__version__"]
__version__ = "{version}"
"""
[tool.pytest.ini_options]
asyncio_mode = "auto"
[project.optional-dependencies]
dev = ["documenteer[pipelines]"]