forked from celine-eu/mqtt-ingestor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (43 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
52 lines (43 loc) · 1.05 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
52
[project]
name = "mqtt-ingestor"
version = "1.6.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"paho-mqtt>=2.1.0",
"psycopg2-binary>=2.9.11",
"pymongo>=4.15.3",
"python-dotenv>=1.1.1",
"sqlalchemy>=2.0.44",
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
mqtt-ingestor = "mqtt_ingestor.__main__:main"
[tool.uv]
package = true
[dependency-groups]
dev = [
"dumpster-cli>=1.3.2",
"python-semantic-release>=10.4.1",
]
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
update_pyproject_toml = true
commit_parser = "conventional"
build_command = """
uv lock --upgrade-package "$PACKAGE_NAME"
git add uv.lock
uv build
"""
[tool.semantic_release.commit_parser_options]
minor_tags = ["feat"]
patch_tags = ["fix", "perf", "chore"]
parse_squash_commits = true
ignore_merge_commits = true