-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
59 lines (54 loc) · 1.8 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
53
54
55
56
57
58
59
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "b2luigi"
author = "Nils Braun, Michael Eliachevitch, The Belle II Collaboration"
author-email = "[email protected]"
home-page = "https://github.com/belle2/b2luigi"
license = "GNU General Public License v3 or later (GPLv3+)"
keywords = "luigi, workflow management, belle2"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
requires = [
"luigi>=3.0.2",
"parse>=1.8.4",
"GitPython>=2.1.11",
"colorama>=0.3.9",
"cachetools>=2.1.0",
"jinja2",
"retry2>=0.9.3"]
requires-python = ">=3.8, <3.12"
description-file = "README.rst"
[tool.flit.metadata.requires-extra]
# Use the same versions of sphinx and sphinx-book-theme
# as in the latest version of the basf2 externals
# (see https://github.com/belle2/externals)
doc = [
"sphinx==4.3.2",
"sphinx-book-theme==0.3.3",
"sphinxcontrib-applehelp==1.0.2",
"sphinxcontrib-devhelp==1.0.2",
"sphinxcontrib-htmlhelp==2.0.0",
"sphinxcontrib-jsmath==1.0.1",
"sphinxcontrib-qthelp==1.0.3",
"sphinxcontrib-serializinghtml==1.1.5",
"sphinx-autobuild"
]
[tool.flit.metadata.urls]
"Homepage" = "https://github.com/belle2/b2luigi"
"Documentation" = "https://b2luigi.belle2.org/"
[tool.ruff]
line-length = 120
[tool.ruff.extend-per-file-ignores]
"__init__.py" = ["F401", "F403", "E402"]
"examples/gbasf2/example_mdst_analysis.py" = ["E501"]