opyml/pyproject.toml

25 lines
539 B
TOML
Raw Permalink Normal View History

2021-10-25 12:54:11 +00:00
[tool.poetry]
name = "opyml"
2022-09-25 21:40:57 +00:00
description = "OPML library for Python."
repository = "https://git.bauke.xyz/Holllo/opyml"
2021-10-25 12:54:11 +00:00
license = "MIT OR Apache-2.0"
2022-09-25 21:44:31 +00:00
version = "0.1.2"
2022-09-25 22:12:28 +00:00
authors = ["Holllo <helllo@holllo.org>"]
2021-10-25 14:01:58 +00:00
readme = "README.md"
2021-10-25 12:54:11 +00:00
[tool.poetry.dependencies]
defusedxml = "^0.7.1"
2022-09-25 21:40:57 +00:00
python = "^3.10"
2021-10-25 12:54:11 +00:00
[tool.poetry.dev-dependencies]
2022-09-25 21:40:57 +00:00
black = "^22.8.0"
mypy = "^0.971"
pdoc = "^12.2.0"
pytest = "^7.1.3"
2021-10-25 12:54:11 +00:00
pytest-cov = "^3.0.0"
2022-09-25 21:40:57 +00:00
pytest-snapshot = "^0.9.0"
2021-10-25 12:54:11 +00:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"