-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.32 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 = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "twitch_indicator/constants.py"
[tool.hatch.build.targets.sdist]
include = [
"/data",
"/twitch_indicator",
"/README.md",
"/LICENSE.txt",
"/LICENSE-zlib.txt",
]
[project]
name = "twitch-indicator"
description = "Twitch.tv indicator for Linux. Tracks your followed channels and notifies when they go live."
authors = [{ name = "buzz", email = "[email protected]" }]
license = "GPL-3.0-or-later"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"aiofiles>=23.2.1",
"aiohttp>=3.9.5",
"pydantic~=2.7.4",
"PyGObject>=3.48.2",
]
dynamic = ["version"]
[project.gui-scripts]
twitch-indicator = "twitch_indicator.__main__:main"
[project.urls]
Source = "https://github.com/buzz/twitch-indicator"
"Bug Tracker" = "https://github.com/buzz/twitch-indicator/issues"
[tool.ruff]
line-length = 100
include = ["twitch_indicator/**/*.py"]
exclude = [".eggs", ".git", ".ruff_cache", ".venv"]
[tool.mypy]
plugins = ["pydantic.mypy"]
follow_imports = "silent"
warn_redundant_casts = true
warn_unused_ignores = true
disallow_any_generics = true
check_untyped_defs = true
no_implicit_reexport = true
[tool.pydantic-mypy]
init_forbid_extra = true
init_typed = true
warn_required_dynamic_aliases = true