Skip to content
Snippets Groups Projects
pyproject.toml 1001 B
[tool.poetry]
name = "calendarweek"
version = "0.4.6"
description = "Utilities for working with calendar weeks in Python and Django"
authors = ["Dominik George <nik@naturalnet.de>", "Jonathan Weth <git@jonathanweth.de>"]
license = "MIT"
homepage = "https://edugit.org/AlekSIS/libs/python-calendarweek"
repository = "https://edugit.org/AlekSIS/libs/python-calendarweek"
documentation = "https://edugit.org/AlekSIS/libs/python-calendarweek"
classifiers = [
    "Development Status :: 4 - Beta",
    "Framework :: Django",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Topic :: Software Development :: Libraries :: Python Modules",
    "Topic :: Software Development :: Localization",
    "Typing :: Typed"
]

[tool.poetry.dependencies]
python = "^3.7"
Django = {version = ">=2.2, <4.0", optional = true}

[tool.poetry.extras]
django = ["Django"]

[tool.poetry.dev-dependencies]

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"