fixedcal/pyproject.toml
2022-12-11 19:11:03 +02:00

26 lines
640 B
TOML

[tool.poetry]
name = "fixedcal"
version = "1.0.0"
description = "Fixed calendar package"
authors = ["Pyry Lahtinen <pyry@pyry.info>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/PyryL/fixedcal"
keywords = ["International Fixed Calendar", "IFC", "date", "datetime"]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pylint = "^2.15.8"
coverage = "^6.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"