-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
93 lines (85 loc) · 1.91 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=40.6.0", "wheel"]
[project]
authors = [
{name = "Joséphine Wolf Oberholtzer", email = "josephine.wolf.oberholtzer@gmail.com"}
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"Sphinx >= 7",
"Unidecode >= 1.3.6",
"black",
]
description = "Tools for building documentation with Sphinx, Graphviz and LaTeX"
dynamic = ["version"]
keywords = [
"sphinx",
"graphviz",
"datastructures",
"documentation",
]
license = {text = "MIT"}
name = "uqbar"
readme = "README.md"
requires-python = ">=3.8"
[project.optional-dependencies]
docs = [
"sphinx-immaterial >= 0.11",
]
test = [
"flake8",
"isort",
"mypy",
"pytest",
"pytest-cov",
"types-PyYAML",
"types-docutils",
]
[project.urls]
homepage = "https://github.com/supriya-project/uqbar"
documentation = "https://supriya-project.github.io/uqbar"
repository = "https://github.com/supriya-project/uqbar"
[tool.black]
skip-magic-trailing-comma = true
target-version = ["py311"]
[tool.cibuildwheel]
build = "cp38-* cp39-* cp310-* cp311-* cp312-*"
test-command = ['python -c "import uqbar"']
[tool.isort]
case_sensitive = true
profile = "black"
[tool.mypy]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = [
"-vv",
"-rf",
"--cov-branch",
"--cov-report=html",
"--cov-report=term",
"--doctest-modules",
]
doctest_optionflags = [
"ELLIPSIS",
"NORMALIZE_WHITESPACE",
]
markers = [
"sphinx: mark a test as a Sphinx test."
]
testpaths = [
"tests",
"uqbar",
]