-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 844 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 844 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
35
36
37
38
39
40
41
42
43
44
45
[project]
name = "timsseek-workspace"
version = "0.30.0"
requires-python = ">=3.11,<3.13"
dependencies = []
[dependency-groups]
dev = [
"pre-commit>=4.0.1",
"ruff>=0.9.0",
"pytest",
"uv",
"bumpver",
"plotnine>=0.15.2",
]
interactive = [
"pandas",
"polars",
"matplotlib",
"vizta",
]
[tool.ruff]
target-version = "py312"
[tool.ruff.format]
docstring-code-format = true
preview = true
[tool.ruff.lint]
select = ["E", "F", "T20", "I"]
[tool.bumpver]
current_version = "0.30.0"
version_pattern = "MAJOR.MINOR.PATCH[-PYTAGNUM]"
tag_message = "v{new_version}"
commit_message = "chore: bump version to {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"python/*/pyproject.toml" = ['version = "{version}"$']
"pyproject.toml" = ['version = "{version}"$']
"Cargo.toml" = ['version = "{version}"$']