-
Notifications
You must be signed in to change notification settings - Fork 46
/
pyproject.toml
86 lines (71 loc) · 1.63 KB
/
pyproject.toml
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
85
86
[tool.poetry]
name = "pyDataverse"
version = "0.3.4"
description = "A Python module for Dataverse."
authors = [
"Stefan Kasberger <[email protected]>",
"Jan Range <[email protected]>",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/gdcc/pyDataverse"
packages = [{ include = "pyDataverse" }]
[tool.poetry.dependencies]
python = "^3.8.1"
httpx = "^0.27.0"
jsonschema = "^4.21.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
radon = "^6.0.1"
mypy = "^1.9.0"
autopep8 = "^2.1.0"
pydocstyle = "^6.3.0"
pygments = "^2.17.2"
pytest = "^8.1.1"
pytest-cov = "^5.0.0"
tox = "^4.14.2"
selenium = "^4.19.0"
wheel = "^0.43.0"
pre-commit = "3.5.0"
sphinx = "7.1.2"
restructuredtext-lint = "^1.4.0"
rstcheck = "^6.2.1"
ruff = "^0.4.4"
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
pytest = "^8.1.1"
pytest-cov = "^5.0.0"
pytest-asyncio = "^0.23.7"
tox = "^4.14.2"
selenium = "^4.19.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "7.1.2"
pydocstyle = "^6.3.0"
restructuredtext-lint = "^1.4.0"
pygments = "^2.17.2"
rstcheck = "^6.2.1"
[tool.poetry.group.lint]
optional = true
[tool.poetry.group.lint.dependencies]
black = "^24.3.0"
radon = "^6.0.1"
mypy = "^1.9.0"
types-jsonschema = "^4.23.0"
autopep8 = "^2.1.0"
ruff = "^0.4.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = ["-v", "--cov=pyDataverse"]
[tool.coverage.run]
source = "tests"
[tool.coverage.report]
show_missing = true
[tool.radon]
cc_min = "B"