-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 988 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 988 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
[project]
name = "crowdsourcing"
version = "1.9.0"
description = "A GitHub bot that automatically validates and processes OpenCitations data deposits submitted via issues. It uses the oc_validator library to check syntax and format, labels issues based on validation results, and manages monthly ingestion into CROCI and OpenCitations Meta with Zenodo integration for provenance tracking"
readme = "README.md"
requires-python = ">=3.10, <3.14"
license = "ISC"
authors = [
{ name = "Arcangelo Massari", email = "[email protected]" },
]
dependencies = [
"oc-ds-converter>=1.0.4",
"oc-meta>=2.1.3",
"oc-validator>=0.3.5",
"pandas>=2.2.3",
"requests>=2.32.3",
]
[project.scripts]
meta-process = "scripts.run_meta_process:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"coverage>=7.6.10",
"genbadge[coverage]>=1.1.3",
"isort>=6.0.0",
"python-dotenv>=1.0.1",
"reuse>=6.2.0",
]