-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
59 lines (53 loc) · 1.44 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
[tool.poetry]
name = "markdown-full-yaml-metadata"
version = "2.1.0" # VERSION_ANCHOR
description = "YAML metadata extension for Python-Markdown"
authors = ["Nikita Sivakov <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "full_yaml_metadata.py"}]
homepage = "https://github.com/sivakov512/python-markdown-full-yaml-metadata"
repository = "https://github.com/sivakov512/python-markdown-full-yaml-metadata"
[tool.poetry.dependencies]
python = "^3.8.1"
markdown = "^3.4.1"
pyyaml = "^6.0"
[tool.poetry.group.dev.dependencies]
black = "^24.0.0"
flake8 = "^7.0.0"
flake8-debugger = "^4.1.2"
flake8-isort = "^6.0.0"
flake8-print = "^5.0.0"
flake8-quotes = "^3.3.2"
isort = "^5.11.4"
mypy = "^1.0.0"
pytest = "^8.0.0"
types-markdown = "^3.4.2.1"
types-pyyaml = "^6.0.12.2"
pytest-cov = "^5.0.0"
coveralls = "^3.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
combine_as_imports = true
include_trailing_comma = true
line_length = 99
multi_line_output = 3
use_parentheses = true
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
ignore_missing_imports = true
no_implicit_optional = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_ignores = true
implicit_reexport = false
[tool.black]
line-length = 100