-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (55 loc) · 1.71 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
[tool.poetry]
name = "seedcase-sprout"
version = "0.23.0"
description = "Grow your research data in a structured, modern way that follows best practices."
authors = [
"Luke W. Johnston <lwjohnst@gmail.com>",
"Henrik Goul <hgo@mjolner.dk>",
"Kristiane Beicher <kris.beicher@clin.au.dk>",
"Philip Christiansen <pch@mjolner.dk>",
"Signe Kirk Brødbæk <signekb@clin.au.dk>",
"Marton Vago <marton.vago95@gmail.com >",
]
maintainers = [
"Luke W. Johnston <lwjohnst@gmail.com>",
"Kristiane Beicher <kris.beicher@clin.au.dk>",
"Signe Kirk Brødbæk <signekb@clin.au.dk>",
"Marton Vago <marton.vago95@gmail.com >",
]
readme = "README.md"
homepage = "https://sprout.seedcase-project.org"
repository = "https://github.com/seedcase-project/seedcase-sprout"
license = "MIT"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/seedcase-project/seedcase-sprout/issues"
[tool.poetry.dependencies]
python = "^3.12"
polars = "^1.5.0"
frictionless = {extras = ["excel", "json", "parquet"], version = "^5.18.0"}
requests = "^2.32.3"
platformdirs = "^4.3.2"
jsonschema = "^4.23.0"
dacite = "^1.8.1"
xmlschema = "^3.4.3"
pandera = {extras = ["polars"], version = "^0.22.1"}
[tool.poetry.group.test.dependencies]
pytest = "^8.3.2"
time-machine = "^2.15.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.9.0"
datamodel-code-generator = {extras = ["http"], version = "^0.28.2"}
commitizen = "^4.0.0"
pre-commit = "^4.0.1"
[tool.poetry.group.docs.dependencies]
jupyter = "^1.1.1"
quartodoc = "^0.9.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = [
# A short traceback mode to make it easier to view
"--tb=short",
# Use the `src/` package
"--import-mode=importlib",
]