-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (30 loc) · 949 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
36
37
# Pytest configuration required to prevent pytest from looking for
# configurations in parent directories. Can be empty.
[project]
name = "lsst-rucioevents"
requires-python = ">=3.11.0"
description = "Tools for generating dummy Rucio events"
license = { text = "GNU General Public License v3 or later (GPLv3+)" }
readme = "README.md"
authors = [
{ name = "Gabriele Mainetti", email = "gabriele,mainetti@cc.in2p3.fr" },
]
keywords = ["lsst"]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/gabrimaine/RucioDummyEventCreator"
[tool.black]
line-length = 110
target-version = ["py38"]
[tool.isort]
profile = "black"
line_length = 110
[tool.lsst_versions]
write_to = "python/lsst/rucioevents/version.py"
[tool.pytest.ini_options]
addopts = "--import-mode=importlib" # Recommended as best practice
[tool.setuptools.packages.find]
where = ["python"]
[tool.setuptools]
zip-safe = true
license-files = ["COPYRIGHT", "LICENSE"]