-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (48 loc) · 1.2 KB
/
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
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "dum-dum-irc"
description = "A non-standard internet relay chat program."
readme = "README.md"
requires-python = ">=3.11"
authors = [{ name = "thegamecracks" }]
license = { text = "MIT" }
classifiers = []
dynamic = ["version"]
dependencies = [
"importlib-resources>=6.1.3",
"platformdirs>=4.2.0",
]
[project.scripts]
dumdum = "dumdum.client.__main__:main"
dumdum-server = "dumdum.server.__main__:main"
[project.optional-dependencies]
tests = [
"coverage>=7.4.3",
"pytest>=8.0.2",
]
[project.urls]
"Homepage" = "https://github.com/thegamecracks/dum-dum-irc"
"Issue Tracker" = "https://github.com/thegamecracks/dum-dum-irc/issues"
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if (typing\\.)?TYPE_CHECKING:",
"if __name__ == \"__main__\":",
"\\s*\\.\\.\\.$",
"raise NotImplementedError",
"def __repr__",
]
[tool.coverage.run]
branch = true
source_pkgs = ["dumdum"]
omit = ["src/dumdum/client/*", "src/dumdum/server.py"]
[tool.pyright]
exclude = [
"**/node_modules",
"**/__pycache__",
"**/.*",
"build",
]
[tool.setuptools_scm]