-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
33 lines (27 loc) · 929 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
[build-system]
requires = [ "setuptools", "setuptools_scm" ]
build-backend = "setuptools.build_meta"
[project]
name = "love-commander"
description = "LSST Operators Visualization Environment (LOVE) service to send SAL commands from http endpoints using salobj."
license = { text = "GPL" }
classifiers = [ "Programming Language :: Python :: 3" ]
urls = { documentation = "https://lsst-ts.github.io/LOVE-producer", repository = "https://github.com/lsst-ts/LOVE-commander" }
dynamic = [ "version" ]
[tool.setuptools.dynamic]
version = { attr = "setuptools_scm.get_version" }
[tool.setuptools.packages.find]
where = [ "python" ]
[tool.setuptools_scm]
write_to = "python/love/commander/version.py"
write_to_template = """
# Generated by setuptools_scm
__all__ = ["__version__"]
__version__ = "{version}"
"""
[tool.pytest.ini_options]
asyncio_mode = "strict"
[project.optional-dependencies]
dev = [
"documenteer[pipelines]",
]