-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (79 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
84 lines (79 loc) · 1.92 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
78
79
80
81
82
83
84
[project]
name = "oc-api"
version = "2.3.0"
description = "OpenCitations API"
authors = [
{name = "Mario Petrella", email = "mario.petrella@unibo.it"},
{name = "Ivan Heibi", email = "ivan.heibi2@unibo.it"},
{name = "Arcangelo Massari", email = "arcangelo.massari@unibo.it"}
]
license = {text = "ISC"}
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
"apscheduler==3.10.1",
"astroid>=3.3.11",
"autopep8>=2.3.2",
"certifi>=2019.11.28",
"charset-normalizer>=3.4.2",
"flake8>=7.3.0",
"gevent>=1.4",
"gitpython>=3.1.46",
"gunicorn>=22.0.0",
"idna>=2.8",
"isodate>=0.6.1",
"isort>=6.1.0",
"jedi>=0.17.2",
"lazy-object-proxy>=1.12.0",
"lxml>=6.0.2",
"markdown>=3.1.1",
"mccabe>=0.7.0",
"mypy>=1.19.1",
"mypy-extensions>=1.1.0",
"pycodestyle>=2.14.0",
"pydocstyle>=6.3.0",
"pyflakes>=3.4.0",
"pylint>=3.3.9",
"pyparsing>=3.2.3",
"python-dateutil>=2.9.0.post0",
"python-jsonrpc-server>=0.4.0",
"python-language-server>=0.36.2",
"python-lsp-jsonrpc>=1.1.2",
"python-lsp-server>=1.12.2",
"pytz>=2026.1.post1",
"ramose>=2.0.0",
"rdflib>=6.1.1",
"rdflib-jsonld>=0.6.2",
"redis>=7.0.1",
"requests>=2.32.4",
"rope>=1.14.0",
"six>=1.16.0",
"snowballstemmer>=3.0.1",
"sparqlwrapper>=2.0.0",
"toml>=0.10.2",
"typing-extensions>=4.14.1",
"ujson>=5.11.0",
"urllib3>=1.26.5",
"web-py>=0.62",
"wrapt>=2.1.2",
"yapf>=0.43.0",
"zope-event>=6.0",
]
[dependency-groups]
dev = [
"pyright>=1.1.408",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"qlever>=0.5.45",
"ruff>=0.15.5",
]
[tool.pytest.ini_options]
addopts = "--cov=src --cov-report=term-missing --cov-report=html"
pythonpath = "."
[tool.coverage.run]
source = ["src"]
[tool.hatch.build.targets.wheel]
packages = ["src"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"