view pyproject.toml @ 2:b4dc3eb1f92b

empty server & first test
author drewp@bigasterisk.com
date Sat, 16 Mar 2024 11:29:20 -0700
parents fa108e01b284
children d98cb018fad7
line wrap: on
line source

[project]
name = "rdferry"
version = "0.1.0"
description = "ferry RDF graphs around"
authors = [
    {name = "drew", email = "drewp@bigasterisk.com"},
]
dependencies = [
    "rdflib>=7.0.0",
    "uvicorn>=0.28.0",
    "starlette>=0.37.2",
    "prometheus-client>=0.20.0",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "MIT"}

[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"


[tool.pdm]
distribution = true

[tool.pdm.dev-dependencies]
dev = [
    "pytest>=8.1.1",
    "aiohttp>=3.9.3",
    "pytest-asyncio>=0.23.5.post1",
]