-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (37 loc) · 949 Bytes
/
pyproject.toml
File metadata and controls
49 lines (37 loc) · 949 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
46
47
48
49
[build-system]
requires = ["setuptools>=68", "setuptools-git-versioning >=2.0,<3"]
build-backend = "setuptools.build_meta"
[project]
name = "cmping"
readme = "README.md"
description = "ping messages between chatmail relays"
dependencies = [
"deltachat-rpc-server>=2.24.0",
"deltachat-rpc-client>=2.24.0",
"xdg-base-dirs>=6.0.2",
]
dynamic = ["version"]
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools]
py-modules = ["cmping"]
[project.urls]
Repository = "https://github.com/chatmail/cmping"
Changelog = "https://github.com/chatmail/cmping/blob/master/CHANGELOG.md"
[project.scripts]
cmping = "cmping:main"
[tool.pytest.ini_options]
addopts = "-v -ra --strict-markers"
[tool.setuptools.packages.find]
where = ["."]
[tool.ruff]
lint.select = [
"F", # Pyflakes
"I", # isort
"PLC", # Pylint Convention
"PLE", # Pylint Error
"PLW", # Pylint Warning
]
lint.ignore = [
"PLC0415" # import-outside-top-level
]