-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1002 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["setuptools>=42", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "psmv-rdf"
version = "0.1.0"
description = "Pipeline for converting the Swiss plant protection product registry (PSMV) into RDF linked data."
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
authors = [
{ name = "BLV-OSAV-USAV" }
]
keywords = ["rdf", "linked-data", "plant-protection", "switzerland", "psmv", "open-data"]
requires-python = ">=3.12"
dependencies = [
"rdflib>=7.4.0",
"pandas>=2.3.3",
"requests>=2.32.5",
"pyyaml>=6.0.3",
"pysftp>=0.2.9",
"pyshacl>=0.31.0",
"otsrdflib>=0.2.9",
"duckdb>=1.5.0",
"SPARQLWrapper>=2.0.0",
"python-dotenv>=1.2.0"
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov",
"ruff",
"mypy",
]
[project.scripts]
psmv-rdf = "service.pipeline:run_pipeline"
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]