Mercurial > code > home > repos > rdferry
view pyproject.toml @ 12:ba73d8ba81dc default tip
refactor
author | drewp@bigasterisk.com |
---|---|
date | Mon, 18 Mar 2024 16:51:44 -0700 |
parents | 0bc06da6bf74 |
children |
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", "sse-starlette>=2.0.0", "aiohttp-sse-client>=0.2.1", ] 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", "pytest-watcher>=0.4.1", ] [tool.pdm.scripts] test.help = "Run tests in current environment" test.cmd = "pytest" watch.help = "Run tests when files change" watch.cmd = "ptw ." presubmit.help = "Install to scratch project and run tests on that" presubmit.cmd = "./pretxncommit.sh"