-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.09 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
[project]
name = "xEvents"
version = "1.0.2"
readme = "README.md"
license = "BSD-3-Clause"
description = "A lightweight, thread-safe event system for Python with channels, wildcards, filters, and replay."
keywords = ["event", "handler", "event handler", "pub-sub", "event-bus", "python"]
authors = [
{ name = "rkohl"}
]
requires-python = ">=3.12"
dependencies = []
[project.urls]
Homepage = "https://github.com/rkohl/xEvents"
Source = "https://github.com/rkohl/xEvents"
[tool.setuptools]
packages = ["xevents"]
package-dir = {"xevents" = "xevents"}
[tool.pyright]
useLibraryCodeForTypes = true
include = ["xevents", "tests"]
exclude = [".cache"]
pythonVersion = "3.12"
indentSize = 2
indentStyle = "space"
reportUnusedImport = true
reportUnusedClass = true
reportMissingImports = "error"
reportUnusedFunction = true
[tool.ruff.format]
indent-style = "space"
indent-size = 2
quote-style = "double"
[tool.ruff]
select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM']
ignore = ['W291', 'W292', 'W293']
line-length = 88
indent-width = 2
[tool.ruff.lint]
select = ["E", "F", "I", "B", "PIE"]
ignore = ["B904", "B028"]