-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 1.02 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
[tool.poetry]
name = "dvuploader"
version = "0.3.2"
description = "Python library for uploading (bulk) data to Dataverse"
authors = ["Jan Range"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^2.5.3"
httpx = "^0.28"
typer = ">=0.9, <0.16"
pyyaml = "^6.0.1"
nest-asyncio = "^1.5.8"
aiofiles = "^24.1.0"
rich = "^13.7.0"
tenacity = "^8.3.0"
[tool.poetry.scripts]
dvuploader = "dvuploader.cli:app"
[tool.poetry.group.dev.dependencies]
ruff = "^0.4.4"
codespell = "^2.2.6"
coverage = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.23.3"
pytest-httpx = "^0.35.0"
[tool.poetry.group.jupyter.dependencies]
ipywidgets = "^8.1.1"
[tool.poetry.group.test.dependencies]
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.23.3"
pytest-httpx = "^0.35.0"
"proxy.py" = "^2.4.4"
[tool.poetry.group.linting.dependencies]
codespell = "^2.2.6"
ruff = "^0.4.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = ["-v", "--cov=dvuploader"]
asyncio_mode = "auto"