-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
90 lines (78 loc) · 1.73 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
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "mkreports"
authors = [
{name = "Holger Hoefling", email = "hhoeflin@gmail.com"},
]
readme = "README.md"
license = {text = "MIT"}
classifiers = ["License :: OSI Approved :: MIT License"]
requires-python = ">=3.11"
version = "0.7.2"
description = "A package to programmatically create mkdocs sites."
dependencies = [
"mkdocs >=1.2.3",
"mkdocs-material >=7.3.6",
"mdutils >=1.3.1",
"PyYAML >=6.0",
"immutabledict >=2.2.1",
"tabulate >=0.8.9",
"deepmerge >=0.3.0",
"python-frontmatter >=1.0.0",
"anytree >=2.8.0",
"intervaltree >=3.1.0",
"more-itertools >=8.12.0",
"typer >=0.4.0",
"mkdocstrings[python] >=0.17.0",
"GitPython >=3.1.26",
"parse >=1.19.0",
"sh",
"ipython >=7.30.1",
"attrs",
"overrides",
"jinja2",
"pandas>=2.2.2",
"platformdirs>=4.2.2",
]
[project.optional-dependencies]
content = [
"pandas",
"plotnine >=0.8.0",
"black",
"matplotlib >=3.4.3",
"plotly >=5.5.0",
"seaborn >=0.11.2",
"altair >=4.1.0",
]
[tool.pdm.dev-dependencies]
dev = [
"pudb >=2021.2.2",
"bpython >=0.22.1",
"pytest >=6.2.5",
"pytest-pudb >=0.7.0",
"types-PyYAML",
"pandas-stubs",
"types-Pillow",
]
[project.urls]
Home = "https://hhoeflin.github.io/mkreports/"
Repository = "https://github.com/hhoeflin/mkreports"
[project.scripts]
mkreports = "mkreports.cli:app"
[tool.pyright]
include=['mkreports']
typeCheckingMode='off'
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
line_length = 88
[tool.flake8]
max_line_length = 88
[tool.pydocstyle]
add_ignore = ["D105"]
ignore_decorators = ["overrides"]
[tool.pdm]
distribution = true