generated from seedcase-project/template-python-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (32 loc) · 938 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
[project]
name = "example-seed-beetle"
version = "0.1.0"
description = "Add your description here"
authors = [
{name = "Luke W. Johnston", email = "[email protected]" },
{name = "Kristiane Beicher", email = "[email protected]" },
]
maintainers = [
{name = "Luke W. Johnston", email = "[email protected]" },
{name = "Kristiane Beicher", email = "[email protected]" },
]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE.md"]
requires-python = ">=3.12"
dependencies = [
"polars>=1.27.0",
"pyjanitor>=0.31.0",
"seedcase-sprout",
]
[project.urls]
issues = "https://github.com/seedcase-project/example-seed-beetle/issues"
repository = "https://github.com/seedcase-project/example-seed-beetle"
[tool.uv.sources]
seedcase-sprout = { git = "https://github.com/seedcase-project/seedcase-sprout" }
[dependency-groups]
dev = [
"commitizen>=4.5.1",
"pre-commit>=4.2.0",
"ruff>=0.11.4",
]