-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (43 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
52 lines (43 loc) · 1.16 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 = "rendezqueue"
version = "0.0.0"
description = "Client and server for a rendezqueue service that just swaps values."
license = { text = "0BSD" }
authors = [
{ name = "Alex Klinkhamer", email = "about.rendezqueue@grencez.dev" }
]
dependencies = [
]
readme = "README.md"
requires-python = ">=3.9"
[project.urls]
Homepage = "https://github.com/rendezqueue/rendezqueue-py"
Repository = "https://github.com/rendezqueue/rendezqueue-py"
Issues = "https://github.com/rendezqueue/rendezqueue-py/issues"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pytest.ini_options]
addopts = "-v"
pythonpath = ["src", "test"]
testpaths = ["test"]
[project.scripts]
rendezqueue-client = "rendezqueue.cli:main"
rendezqueue-server = "rendezqueue.server:run"
[tool.pdm]
package-dir = "src"
[tool.pdm.dev-dependencies]
dev = [
"pytest",
"ruff",
"sxpb @ git+https://github.com/sxproto/sxpb-py@04fbc53342cb7c7dd75166be955253711966f5e2",
"ty",
]
[tool.pdm.scripts]
check-format = "ruff check"
check-type = "ty check"
tidy = "ruff format"
lint = {composite = ["check-format", "check-type"]}
test = "pytest"
[tool.ty.environment]
root = ["src", "test"]