blob: df6bd8a492e15639f592609d64e0a4856b0be5ee [file] [log] [blame]
[tool.poetry]
name = "tomlkit"
version = "0.5.2"
description = "Style preserving TOML library"
authors = ["Sébastien Eustace <sebastien@eustace.io>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/sdispater/tomlkit"
repository = "https://github.com/sdispater/tomlkit"
[tool.poetry.dependencies]
python = "~2.7 || ^3.4"
# enum34 is needed for Python 2.7
enum34 = { version = "^1.1", python = "~2.7" }
# functools32 is needed for Python 2.7
functools32 = { version = "^3.2.3", python = "~2.7" }
# The typing module is not in the stdlib in Python 2.7 and 3.4
typing = { version = "^3.6", python = "~2.7 || ~3.4" }
[tool.poetry.dev-dependencies]
pytest = "^3.6"
pytest-cov = "^2.5"
black = { version = "^18.6b4", python = "^3.6" }
pre-commit = "^1.10"
tox = "^3.1"
codecov = "^2.0"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
| tests/toml-test
)/
'''
[build-system]
requires = ["poetry>=0.12a3"]
build-backend = "poetry.masonry.api"