-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.48 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
[tool.poetry]
name = "seedcase-sprout"
version = "0.5.0"
description = "Grow your research data in a structured, modern way that follows best practices."
authors = [
"Luke W. Johnston <[email protected]>",
"Henrik Goul <[email protected]>",
"Kristiane Beicher <[email protected]>",
"Philip Christiansen <[email protected]>",
"Signe Kirk Brødbæk <[email protected]>",
"Marton Vago <[email protected] >",
]
maintainers = [
"Luke W. Johnston <[email protected]>",
"Kristiane Beicher <[email protected]>",
"Signe Kirk Brødbæk <[email protected]>",
"Marton Vago <[email protected] >",
]
readme = "README.md"
homepage = "https://sprout.seedcase-project.org"
repository = "https://github.com/seedcase-project/seedcase-sprout"
license = "MIT"
packages = [{include = "seedcase_sprout"}]
[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 = ["sql"], version = "^5.17.0"}
requests = "^2.32.3"
platformdirs = "^4.3.2"
jsonschema = "^4.23.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.2"
time-machine = "^2.15.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.0"
datamodel-code-generator = {extras = ["http"], version = "^0.26.0"}
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"