-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (27 loc) · 988 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
[build-system]
requires = ["setuptools>45", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "ts-tunablelaser"
description = "TunableLaser is a Commandable SAL Component for the `Vera C. Rubin Observatory <https://lsst.org>`_."
license = { text = "GPL" }
readme = "README.rst"
urls = { documentation = "https://ts-tunablelaser.lsst.io", source_code = "https://github.com/lsst-ts/ts_tunablelaser"}
dynamic = ["version"]
[tool.setuptools.dynamic]
version = { attr = "setuptools_scm.get_version" }
[tool.setuptools.packages.find]
where = [ "python" ]
[project.scripts]
run_tunablelaser = "lsst.ts.tunablelaser:run_tunablelaser"
[tool.setuptools_scm]
write_to = "python/lsst/ts/tunablelaser/version.py"
write_to_template = """
# Generated by setuptools_scm
__all__ = ["__version__"]
__version__ = "{version}"
"""
[tool.pytest.ini_options]
asyncio_mode = "auto"
[project.optional-dependencies]
dev = ["pytest", "flake8", "pytest-coverage", "black"]