-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
46 lines (44 loc) · 955 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
42
43
44
45
46
[project]
name = "vizzu-story-dev"
version = "0.1.0"
description = ""
authors = [
{name = "Vizzu Inc.", email = "[email protected]"},
]
dependencies = []
requires-python = ">=3.10"
readme = "README.md"
license = {text = "Apache-2.0"}
[tool.pdm.dev-dependencies]
codequality = [
"black",
"pylint",
"mypy",
]
docs = [
"mdformat",
"mdformat-beautysh",
"mdformat-black",
"mdformat-configurable-black",
"mdformat-config",
"mdformat-web",
"mdformat-admon",
"mdformat-gfm",
"mdformat-tables",
"mdformat-footnote",
"mdformat-frontmatter",
"mdx_truly_sane_lists",
"mkdocs",
"mkdocs-material",
"mkdocs-section-index",
"mkdocs-literate-nav",
"mkdocs-autorefs",
"mkdocs-gen-files",
"mkdocs-exclude",
"mike @ git+https://github.com/jimporter/mike.git@master",
"pyyaml",
"types-pyyaml",
]
[tool.pylint.messages-control]
disable = ["fixme"]
good-names= ["i", "df"]