-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
68 lines (56 loc) · 1.44 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
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = [
"setuptools>=42,<71.0.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "pinpal"
authors = [{name = "Glyph", email = "glyph@glyph.im"}]
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
readme = "README.md"
dependencies = [
"keyring",
"horsephrase",
]
version = "2024.12.0"
[project.urls]
Home = "https://github.com/glyph/pinpal/"
[project.scripts]
pinpal = "pinpal:main"
[project.optional-dependencies]
gui = [
"py2app ; sys_platform == 'darwin'",
"pyobjc-core ; sys_platform == 'darwin'",
"pyobjc-framework-Cocoa ; sys_platform == 'darwin'",
"pyobjc-framework-ExceptionHandling ; sys_platform == 'darwin'",
"pyobjc-framework-UserNotifications ; sys_platform == 'darwin'",
"pyobjc-framework-CFNetwork ; sys_platform == 'darwin'",
"quickmacapp ; sys_platform == 'darwin'",
"quickmachotkey ; sys_platform == 'darwin'",
"ewmh ; sys_platform == 'linux'",
"pycairo ; sys_platform == 'linux'",
"PyGObject ; sys_platform == 'linux'",
"python-xlib ; sys_platform == 'linux'",
"pydbus ; sys_platform == 'linux'",
]
dev = [
"pip-tools",
"mypy",
"mypy-zope",
"types-python-dateutil",
"pygobject-stubs",
"types-python-xlib",
"encrust ; sys_platform == 'darwin'",
]
[tool.mypy]
namespace_packages = true
plugins = ["mypy_zope:plugin"]
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [
"objc",
"Foundation",
"AppKit",
]