forked from sphinx-extensions2/sphinx-sqlalchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.76 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "sphinx_sqlalchemy"
dynamic = ["version"]
description = "Sphinx extension for documenting SQLAlchemy ORMs"
authors = [{name = "Chris Sewell", email = "[email protected]"}]
license = {text = "MIT License"}
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Sphinx :: Extension",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["sphinx", "extension"]
requires-python = "~=3.8"
dependencies = [
"sphinx>=5,<8",
"sqlalchemy~=2.0",
]
[project.urls]
Homepage = "http://github.com/sphinx-extensions2/sphinx-sqlalchemy"
Documentation = "https://sphinx-sqlalchemy.readthedocs.io"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"sphinx-pytest",
"syrupy~=4.0",
]
docs = ["furo"]
[tool.ruff]
line-length = 100
extend-select = ["B0", "C4", "ICN", "ISC", "N", "RUF", "SIM"]
[tool.isort]
profile = "black"
src_paths = ["sphinx_sqlalchemy", "tests"]
[tool.mypy]
show_error_codes = true
check_untyped_defs = true
scripts_are_modules = true
warn_unused_ignores = true
warn_redundant_casts = true
plugins = ["sqlalchemy.ext.mypy.plugin"]
[[tool.mypy.overrides]]
module = 'docutils.*'
ignore_missing_imports = true