-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 952 Bytes
/
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
[tool.poetry]
name = "examples"
version = "0.1.0"
description = "Showing how Seedcase Sprout works"
authors = [
"Luke W. Johnston <[email protected]>",
"Kristiane Beicher <[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] >",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/seedcase-project/examples"
package-mode = false
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/seedcase-project/examples/issues"
[tool.poetry.dependencies]
python = "^3.12"
polars = "^1.5.0"
requests = "^2.32.3"
[tool.poetry.group.dev.dependencies]
ruff = "^0.6.2"
commitizen = "^4.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"