view pyproject.toml @ 88:a60b71615353

clean up index.html
author drewp@bigasterisk.com
date Sat, 07 Sep 2024 16:18:55 -0700
parents 5f7ae444ecae
children
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>=7.0.0",
    "starlette-exporter>=0.17.1",
    "starlette>=0.32.0post1",
    "patchablegraph>=1.6.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"