-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
48 lines (41 loc) · 874 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
38
39
40
41
42
43
44
45
46
47
48
[project]
name = "signalblast"
dynamic = ["version"]
description = "Broadcast bot for Signal"
authors = [{name = "Era Dorta"}]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
]
keywords = [
"Signal",
"Bot",
"Broadcast",
]
dependencies = [
"bcrypt>=4.1.3",
"signalbot",
]
[tool.uv]
dev-dependencies = [
"pre-commit >=3.7.1,<4.0"]
[tool.uv.sources]
signalbot = { git = "https://github.com/filipre/signalbot", branch = "master" }
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "_version.py"
[tool.ruff]
src = ["src"]
line-length = 120
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D", # Docstrings
"FIX", # TODO, FIXME and other messages
"ERA001", # Commented out code
]