-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.47 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
[project]
name = "toasted"
version = "0.2.1"
authors = [{ name = "ysfchn" }]
description = "Toast notifications library for Windows, built on top of WinRT."
license.file = "LICENSE"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows"
]
dependencies = [
"httpx~=0.25.0",
"Pillow~=10.2.0",
"winrt-Windows.UI.ViewManagement~=2.2.0 ; sys_platform == 'win32'",
"winrt-Windows.Foundation~=2.2.0 ; sys_platform == 'win32'",
"winrt-Windows.UI.Notifications~=2.2.0 ; sys_platform == 'win32'",
"winrt-Windows.Storage~=2.2.0 ; sys_platform == 'win32'",
"winrt-Windows.Data.Xml.Dom~=2.2.0 ; sys_platform == 'win32'",
# Not directly used by Toasted, but appearently it is required for toast
# dismissed events, otherwise it raises an exception.
"winrt-Windows.Foundation.Collections~=2.2.0 ; sys_platform == 'win32'"
]
requires-python = ">=3.9"
[project.urls]
"GitHub" = "https://github.com/ysfchn/toasted"
"Sponsor" = "https://github.com/sponsors/ysfchn"
[tool.setuptools]
packages = ["toasted"]
[tool.rye]
dev-dependencies = [
"ruff~=0.0.290"
]
[build-system]
requires = [
"setuptools>=61",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.pyright]
venvPath = "."
venv = ".venv"
reportDeprecated = "none"
typeCheckingMode = "standard"
reportOptionalMemberAccess = "warning"
reportOptionalIterable = "none"
pythonPlatform = "Windows"