-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (55 loc) · 1.43 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (55 loc) · 1.43 KB
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
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = [
"setuptools>=64",
"setuptools-scm>=8",
]
build-backend = "setuptools.build_meta"
[project]
name = "starterkit_ci"
dynamic = ["version"]
description = "Helpers for Starterkit Continuous Integration"
readme = "README.md"
requires-python = ">=3.8"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
authors = [
{ name = "LHCb Starterkit" },
]
keywords = ["Starterkit"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"sphinx>=7.0",
"sphinx-rtd-theme>=1.3",
"myst-parser[linkify]>=3.0",
"nbsphinx>=0.9",
]
[project.urls]
"Homepage" = "https://github.com/lhcb/starterkit-ci"
"Bug Reports" = "https://github.com/lhcb/starterkit-ci/issues"
"Source" = "https://github.com/lhcb/starterkit-ci"
[project.scripts]
starterkit_ci = "starterkit_ci:parse_args"
[tool.setuptools]
package-dir = {"" = "src"}
zip-safe = false
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
starterkit_ci = [
"sphinx_config/_static/*",
"sphinx_config/_static/**/*",
]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"
[tool.flake8]
max-line-length = 120
[tool.pytest.ini_options]
addopts = "--cov=cirun --cov-report=term-missing"