-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (43 loc) · 1.07 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
[tool.black]
max-line-length = 100
target-version = ["py311"]
[tool.isort]
profile = "black"
[tool.flake8]
max-line-length = 100
[tool.mypy]
warn_unused_ignores = false
disallow_untyped_defs = true
[tool.poetry]
name = "mdtc"
version = "0.1.3"
license = "MPL-2.0"
description = "A model-driven configuration object for TOML or dict-based configs."
authors = ["pm5k"]
readme = "README.md"
homepage = "https://pm5k.github.io/mdtc/"
documentation = "https://pm5k.github.io/mdtc/"
repository = "https://github.com/pm5k/mdtc"
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
mypy = "^1.0.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
black = "^23.1.0"
pydantic = "^1.10.4"
pre-commit = "^3.0.4"
toml = "^0.10.2"
types-toml = "^0.10.8.6"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.4.2"
mkdocstrings = "^0.20.0"
mkdocstrings-python = "^0.8.3"
mkdocs-material = "^9.0.12"
mkdocs-gen-files = "^0.4.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.1"
pydantic = "^1.10.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"