-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1.01 KB
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
[project]
name = "rcp"
version = "1.3.0"
description = "Rotary Controller Python"
authors = [
{ name = "Stefano Bertelli", email = "stefano@provvedo.com" }
]
requires-python = ">=3.10,<4.0"
license = "MIT"
readme = "README.md"
dependencies = [
"cachetools>=5.5.0",
"keke>=0.1.4",
"kivy>=2.3.0",
"minimalmodbus>=2.1.1",
"nmcli>=1.5.0",
"pydantic>=2.10.3",
"pyyaml>=6.0.2",
"aiohttp>=3.9.0",
"sentry-sdk>=2.32.0",
]
[dependency-groups]
dev = [
"coverage>=7.6.9",
"pytest>=8.3.4",
"python-semantic-release>=9.15.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
patch_without_tag = true
branch = "main"
hvcs = "github"
remove_dist = false
upload_to_pypi = false
build_command = "uv build"
prerelease = false
[tool.semantic_release.branches.main]
match = "main"
prerelease = false
[tool.semantic_release.branches.dev]
match = "dev"
prerelease = true
prerelease_token = "rc"