forked from csala/mdformat-pyproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (49 loc) · 1.15 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
[build-system]
requires = ["flit_core >=3.2.0,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "mdformat_pyproject"
authors = [
{ name = "Carles Sala", email = "[email protected]" },
]
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["mdformat", "markdown", "markdown-it"]
requires-python = ">=3.7"
dependencies = [
"mdformat ~=0.7",
"tomli ~=2.0; python_version < '3.11'"
]
dynamic = ["version", "description"]
[project.optional-dependencies]
test = [
"pytest~=6.0",
"coverage",
"pytest-cov",
]
dev = ["pre-commit"]
[project.urls]
Homepage = "https://github.com/csala/mdformat-pyproject"
[project.entry-points."mdformat.parser_extension"]
pyproject = "mdformat_pyproject"
[tool.flit.sdist]
include = []
exclude = [".github/", "tests/"]
[tool.isort]
profile = "black"
[tool.mdformat]
wrap = 99
number = true
[tool.coverage.report]
exclude_lines = [
'^ *import '
]
[tool.black]
line_length = 99
[tool.flake8]
max-line-length = 99