-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
50 lines (40 loc) · 1.25 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "mdformat-config"
version = "0.1.3" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
authors = ["Taneli Hukkinen <hukkinj1@users.noreply.github.com>"]
description = "Mdformat plugin to beautify configuration and data-serialization formats"
repository = "https://github.com/hukkinj1/mdformat-config"
readme = "README.md"
license = "MIT"
classifiers = [
"Topic :: Documentation",
"Topic :: Text Processing :: Markup",
]
keywords = ["mdformat", "json", "yaml", "toml", "markdown", "commonmark", "formatter"]
packages = [
{include = "mdformat_config"},
]
#[tool.poetry.urls]
#"Changelog" = "https://github.com/hukkinj1/mdformat-config/blob/master/CHANGELOG.md"
[tool.poetry.plugins."mdformat.codeformatter"]
"json" = "mdformat_config:format_json"
"toml" = "mdformat_config:format_toml"
"yaml" = "mdformat_config:format_yaml"
[tool.poetry.dependencies]
python = "^3.6.1"
mdformat = ">=0.3.0"
toml = ">=0.10.0"
"ruamel.yaml" = ">=0.16.0"
[tool.poetry.dev-dependencies]
# Tests
pytest = "*"
pytest-randomly = "*"
# Tools
pre-commit = "*"
bump2version = "*"
[tool.pytest.ini_options]
addopts = "--strict-markers --strict-config"
xfail_strict = true