-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 846 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 846 Bytes
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
[tool.poetry]
name = "easyDataverse"
version = "0.4.5"
description = "Lightweight Dataverse interface in Python to upload, download and update datasets found in Dataverse instances."
authors = ["Jan Range <jan.range@simtech.uni-stuttgart.de>"]
license = "MIT License"
readme = "Readme.md"
packages = [{ include = "easyDataverse" }]
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^2.7.1"
pydataverse = "^0.3.5"
pyaml = "^24.4.0"
xmltodict = "^0.13.0"
python-forge = "18.6.0"
anytree = "^2.12.1"
dotted-dict = "1.1.3"
rich = "^13.7.1"
nob = "^0.8.2"
nest-asyncio = "^1.6.0"
dvuploader = "^0.3.1"
email-validator = "^2.1.1"
httpx = "^0.28"
[tool.poetry.group.test.dependencies]
pytest-cov = "^5.0.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.4.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"