2022-12-11 09:35:00 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "fixedcal"
|
|
|
|
version = "1.0.0"
|
|
|
|
description = "Fixed calendar package"
|
2022-12-11 19:11:03 +02:00
|
|
|
authors = ["Pyry Lahtinen <pyry@pyry.info>"]
|
2022-12-11 09:35:00 +02:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
2022-12-11 19:11:03 +02:00
|
|
|
repository = "https://github.com/PyryL/fixedcal"
|
|
|
|
keywords = ["International Fixed Calendar", "IFC", "date", "datetime"]
|
|
|
|
classifiers = [
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules"
|
|
|
|
]
|
2022-12-11 09:35:00 +02:00
|
|
|
|
|
|
|
[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"
|