-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (69 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (69 loc) · 1.7 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[project]
name = "piccione"
version = "3.1.2"
description = "A Python toolkit for uploading and downloading data to external repositories and cloud services."
authors = [{name = "Arcangelo Massari", email = "arcangelo.massari@unibo.it"}]
readme = "README.md"
license = {text = "ISC"}
requires-python = ">=3.10"
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"httpx>=0.28.1",
"internetarchive>=5.7.1",
"pyyaml>=6.0.3",
"redis>=4.5.5",
"requests>=2.32.5",
"rich>=14.2.0",
"sparqlite>=1.0.0",
"tqdm>=4.67.1",
]
[project.urls]
Homepage = "https://github.com/opencitations/piccione"
Documentation = "https://opencitations.github.io/piccione/"
Repository = "https://github.com/opencitations/piccione"
[dependency-groups]
dev = [
"genbadge[coverage]>=1.1.3",
"pyright>=1.1.409",
"pytest>=8.0.0",
"pytest-cov>=7.0.0",
"reuse>=6.2.0",
"ruff>=0.15.14",
"virtuoso-utilities>=1.8.3",
]
[tool.pyright]
typeCheckingMode = "standard"
venvPath = "."
venv = ".venv"
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D",
"DOC",
]
[tool.ruff.lint.per-file-ignores]
"tests/**" = [
"S101",
"ARG001",
"ARG002",
"ARG005",
"PLR2004",
]
[tool.ruff.lint.pylint]
max-args = 7
[build-system]
requires = ["hatchling>=1.26"]
build-backend = "hatchling.build"