generated from executablebooks/mdformat-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
71 lines (61 loc) · 1.69 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "mdformat_frontmatter"
authors= [ {name = "Chris Butler", email = "chris@thebutlers.me"},
]
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"
]
dynamic = ["version", "description"]
requires-python=">=3.7"
dependencies=["mdformat >=0.7.16,<0.8.0",
"mdit-py-plugins >=0.4.0",
"ruamel.yaml"
]
[project.urls]
Source = "https://github.com/butler54/mdformat-frontmatter"
Changelog = "https://github.com/butler54/mdformat-frontmatter/blob/main/CHANGELOG.md"
[project.optional-dependencies]
test = [
"pytest>=7.3",
"coverage",
"pytest-cov"
]
dev = [
"pre-commit",
"python-semantic-release >=8.3.0",
"flit >= 3.9"
]
[project.entry-points."mdformat.parser_extension"]
frontmatter = "mdformat_frontmatter"
[tool.flit.sdist]
include = []
exclude = [".github/", "tests/"]
[tool.isort]
# Force imports to be sorted by module, independent of import type
force_sort_within_sections = true
# Group first party and local folder imports together
no_lines_before = ["LOCALFOLDER"]
# Configure isort to work without access to site-packages
known_first_party = ["mdformat_frontmatter", "tests"]
# Settings for Black compatibility
profile = "black"
[tool.semantic_release]
version_variables = [
'mdformat_frontmatter/__init__.py:__version__'
]
branch = 'main'
upload_to_pypi = false
version_source = 'commit'
newline_sequence = '\n'