view pyproject.toml @ 40:c4e8d697326b

wall calendar html generator
author drewp@bigasterisk.com
date Mon, 27 Nov 2023 12:04:28 -0800
parents cb990883e52f
children ab54c9f65f76
line wrap: on
line source

[project]
name = "gcalendarwatch"
version = "0.0.1"
description = ""
authors = [
    {name = "Drew Perttula", email = "drewp@bigasterisk.com"},
]
dependencies = [
    "pymongo>=4.6.0",
    "python-dateutil>=2.8.2",
    "uvicorn[standard]>=0.24.0post1",
    "gcsa>=2.1.0",
    "google-api-python-client>=2.107.0",
    "oauth2client>=4.1.3",
    "rdflib>=6.1.1",
    "starlette-exporter>=0.17.1",
    "starlette>=0.32.0post1",
    "patchablegraph>=1.5.0",
    "rdfdb==0.24.0",
    "background-loop>=1.8.0",
    "htmlgenerator>=1.2.28",
]
requires-python = ">=3.11"
license = {text = "MIT"}

[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"

[[tool.pdm.source]]
url = "https://projects.bigasterisk.com/"
verify_ssl = true
name = "home"

[tool.ruff]
ignore = []

exclude = [
    ".hg",
    ".ruff_cache",
    ".venv",
    "__pypackages__",
    "dist",
    "node_modules",
]

line-length = 160

# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"

target-version = "py311"