forked from python-poetry/tomlkit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (52 loc) · 1.14 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
[tool.poetry]
name = "tomlkit"
version = "0.11.6"
description = "Style preserving TOML library"
authors = ["Sébastien Eustace <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/sdispater/tomlkit"
repository = "https://github.com/sdispater/tomlkit"
include = [
{ path = "tomlkit/py.typed" },
{ path = "tests", format = "sdist" },
{ path = "docs", format = "sdist" },
{ path = "CHANGELOG.md", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.6"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
PyYAML = "^6.0"
pre-commit = {version = "^2.1.0", python = "^3.6.1"}
mypy = "^0.920"
Sphinx = "^4.3.2"
furo = "^2021.11.23"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
| tests/toml-test
)/
'''
[tool.isort]
profile = "black"
force_single_line = true
atomic = true
lines_after_imports = 2
lines_between_types = 1
known_first_party = ["tomlkit"]
known_third_party = ["pytest"]
[build-system]
requires = ["poetry-core>=1.0.0a9"]
build-backend = "poetry.core.masonry.api"