-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.75 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (64 loc) · 1.75 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
[project]
name = "pyDataverse"
version = "0.4.0beta1"
description = "A Python module for Dataverse."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10,<4.0"
authors = [
{ name = "Stefan Kasberger", email = "stefan.kasberger@univie.ac.at" },
{ name = "Jan Range", email = "jan.range@simtech.uni-stuttgart.de" },
]
dependencies = [
"httpx>=0.28.0,<0.30.0",
"pydantic[email]>=2.10.0,<3.0.0",
"typing-extensions>=4.14.1,<5.0.0",
"rich>=14.1.0,<15.0.0",
"deprecation>=2.1.0,<3.0.0",
"pandas>=2.3.3,<3.0.0",
"cachetools>=6.2.1,<7.0.0",
"asyncer>=0.0.10,<0.0.11",
"bigtree>=1.0.0,<2.0.0",
"rdflib>=7.5.0,<8.0.0",
"sniffio>=1.3.1,<2.0.0",
"fsspec>=2026.4.0",
]
[project.optional-dependencies]
tests = [
"pytest>=8.1.1,<9.0.0",
"pytest-sugar>=1.1.1",
"pytest-cov>=5.0.0,<6.0.0",
"pytest-asyncio>=1.3.0,<2.0.0",
"wheel>=0.43.0,<0.44.0",
"pre-commit==3.5.0",
"ruff>=0.4.4,<0.5.0",
]
docs = [
"griffe>=2.0.0,<3.0.0",
]
mcp = [
"fastmcp>=2.14.5,<3.0.0",
"mcp>=1.26.0,<2.0.0",
"nbconvert>=7.17.0,<8.0.0",
"nbformat>=5.10.4,<6.0.0",
"pillow>=12.1.1,<13.0.0",
"pymupdf>=1.27.1,<2.0.0",
"toon-format==0.9.0b1,<0.10.0",
]
[project.urls]
repository = "https://github.com/gdcc/pyDataverse"
Documentation = "https://gdcc.github.io/pyDataverse/"
[project.entry-points."fsspec.specs"]
dataverse = "pyDataverse.filesystem.dvfs:DataverseFS"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
packages = [{ include = "pyDataverse" }]
[tool.pytest.ini_options]
addopts = ["-v", "--cov=pyDataverse"]
asyncio_mode = "auto"
[tool.coverage.run]
source = ["pyDataverse"]
[tool.coverage.report]
show_missing = true