-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (53 loc) · 1.32 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_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "readthedocs-assistant"
readme = "README.md"
authors = [
{name = "Juan Luis Cano Rodríguez", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"click",
"gidgethub",
"jsonschema",
"httpx",
"pyyaml",
"types-PyYAML",
]
requires-python = ">=3.8"
dynamic = ["version", "description"]
[tool.flit.module]
name = "readthedocs_assistant"
[project.urls]
source = "https://github.com/readthedocs/readthedocs-assistant"
tracker = "https://github.com/readthedocs/readthedocs-assistant/issues"
documentation = "https://readthedocs-assistant.readthedocs.io"
[project.optional-dependencies]
test = [
"hypothesis",
"mypy",
"pytest",
"pytest-asyncio",
"pytest-cov",
]
doc = [
"furo",
"myst-parser",
"sphinx~=4.3.0",
]
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
asyncio_mode = "strict"