0
|
1 [project]
|
|
2 name = "rdferry"
|
|
3 version = "0.1.0"
|
|
4 description = "ferry RDF graphs around"
|
|
5 authors = [
|
|
6 {name = "drew", email = "drewp@bigasterisk.com"},
|
|
7 ]
|
|
8 dependencies = [
|
|
9 "rdflib>=7.0.0",
|
|
10 "uvicorn>=0.28.0",
|
|
11 "starlette>=0.37.2",
|
|
12 "prometheus-client>=0.20.0",
|
|
13 ]
|
|
14 requires-python = ">=3.11"
|
|
15 readme = "README.md"
|
|
16 license = {text = "MIT"}
|
|
17
|
|
18 [build-system]
|
|
19 requires = ["pdm-backend"]
|
|
20 build-backend = "pdm.backend"
|
|
21
|
|
22
|
|
23 [tool.pdm]
|
|
24 distribution = true
|
2
|
25
|
|
26 [tool.pdm.dev-dependencies]
|
|
27 dev = [
|
|
28 "pytest>=8.1.1",
|
|
29 "aiohttp>=3.9.3",
|
|
30 "pytest-asyncio>=0.23.5.post1",
|
7
|
31 "pytest-watcher>=0.4.1",
|
2
|
32 ]
|
7
|
33
|
|
34 [tool.pdm.scripts]
|
|
35 test.help = "Run tests in current environment"
|
|
36 test.cmd = "pytest"
|
|
37 watch.help = "Run tests when files change"
|
|
38 watch.cmd = "ptw ."
|
|
39 presubmit.help = "Install to scratch project and run tests on that"
|
|
40 presubmit.cmd = "./pretxncommit.sh" |