-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (30 loc) · 1010 Bytes
/
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
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "documented"
version = "0.1.4"
description = "Templated docstrings for Python classes."
license = "MIT"
authors = ["Anatoly Scherbakov <[email protected]>"]
readme = "README.md"
repository = "https://github.com/anatoly-scherbakov/documented"
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
[tool.poetry.group.dev.dependencies]
# This prevents flake8-commas from crashing.
mkdocs-macros-plugin = "^0.7.0"
mkdocstrings = {extras = ["python"], version = ">=0.23,<0.25"}
attrs = ">=22.1,<24.0"
pydantic = "^2.4.2"
jeeves-yeti-pyproject = {version = "^0.2.25", python = ">=3.10"}
mkdocs-awesome-pages-plugin = "^2.9.2"
[tool.flakeheaven.exceptions."**/__init__.py"]
pyflakes = ["-F401"]