43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[project]
|
|
name = "dump-things-pyclient"
|
|
version = "0.2.15"
|
|
description = "A client library and CLI commands for dump-things-services"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
authors = [
|
|
{name="Christian Mönch", email="christian.moench@web.de"},
|
|
]
|
|
dependencies = [
|
|
"click",
|
|
"pyyaml",
|
|
"requests",
|
|
"rich-click",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
ttl = [
|
|
"dump-things-service>=5.6.1",
|
|
]
|
|
tests = [
|
|
"dump-things-service>=5.6.1",
|
|
"pytest>=9.0.1",
|
|
]
|
|
|
|
[dependency-groups]
|
|
tests = [
|
|
"datalad-core>=0.2.0",
|
|
"linkml>=1.10.0",
|
|
"linkml-runtime>=1.10.0",
|
|
"dump-things-service>=5.6.1",
|
|
"pytest>=9.0.1",
|
|
]
|
|
|
|
[project.scripts]
|
|
dtc = "dump_things_pyclient.commands.dtc:cli"
|
|
json2ttl = "dump_things_pyclient.commands.json2ttl:main"
|
|
auto-curate = "dump_things_pyclient.commands.redirect:main"
|
|
read-pages = "dump_things_pyclient.commands.redirect:main"
|
|
get-records = "dump_things_pyclient.commands.redirect:main"
|
|
post-records = "dump_things_pyclient.commands.redirect:main"
|
|
list-incoming = "dump_things_pyclient.commands.redirect:main"
|
|
clean-incoming = "dump_things_pyclient.commands.redirect:main"
|