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
|
[tool.poetry]
name = "iso8601"
version = "2.1.0"
description = "Simple module to parse ISO 8601 dates"
authors = ["Michael Twomey <mick@twomeylee.name>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/micktwomey/pyiso8601"
repository = "https://github.com/micktwomey/pyiso8601"
documentation = "https://pyiso8601.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
[tool.poetry.group.dev.dependencies]
mypy = "*"
black = "*"
pytest = "*"
hypothesis = "*"
pytz = "*"
pre-commit = "*"
nox = "*"
Sphinx = "*"
changelog-manager = "*"
ruff = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
|