forked from Xpra-org/xpra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
130 lines (117 loc) · 3.15 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
[build-system]
requires = ["setuptools", "cython"]
build-backend = "setuptools.build_meta"
[project]
name = "xpra"
version = "6.2.0"
authors = [
{name = "Antoine Martin", email = "[email protected]"},
{name = "Nathaniel Smith", email = "[email protected]"},
{name = "Arthur Huillet"},
]
maintainers = [
{name = "Antoine Martin", email = "[email protected]"},
]
description = "multi-platform screen and application forwarding system"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["remote"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"PyGObject",
"pillow",
]
[project.license]
name = "GPL-2.0-or-later"
file = "COPYING"
[project.urls]
"Homepage" = "https://xpra.org/"
"Source" = "https://github.com/Xpra-org/xpra"
"Funding" = "https://github.com/sponsors/totaam"
"Documentation" = "https://github.com/Xpra-org/xpra/docs"
[project.optional-dependencies]
gui = [
"pyopengl",
"pyopengl_accelerate",
]
cli = [
# network features:
"paramiko",
"pyopenssl",
"cryptography",
"uvloop",
"aioquic",
"dbus",
"socks",
"pysocks",
"netifaces",
"dns",
"avahi",
"zeroconf",
# printing, etc:
"cups",
"psutil",
"inotify",
"cpuinfo",
"setproctitle",
"pyxdg",
# libraries used by codecs:
"numpy",
"pycuda",
"pynvml",
# authentication modules:
"kerberos",
"gssapi",
"ldap3",
"ldap",
"oauthlib",
"pyu2f",
]
# these scripts are mangled, don't use them
# [project.scripts]
# xpra = "xpra.scripts.main:main"
# [project.gui-scripts]
# xpra_launcher = "xpra.client.gtk3.launcher:main"
[tool.ruff]
line-length = 120
ignore = ["E741"]
[tool.flake8]
max-line-length = 120
exclude = ["xpra/gtk/examples/*.py", "xpra/platform/win32/*", "xpra/platform/darwin/*"]
ignore = ["E203", "E231", "E225", "E226", "E252", "E221", "E741", "E262", "E265"]
per-file-ignores = """
setup.py:E241
xpra/audio/gstreamer_util.py:E241
xpra/keyboard/layouts.py:E241,E501
xpra/x11/gtk_x11/wm_check.py:E241
xpra/x11/server/seamless.py:E241
xpra/codecs/nvidia/util.py:E241
xpra/codecs/loader.py:E241
xpra/codecs/checks.py:E501
xpra/gtk/versions.py:E241
xpra/client/mixins/windows.py:E241
xpra/client/gui/paint_colors.py:E241
xpra/scripts/config.py:E241
xpra/net/rfb/d3des.py:E241
xpra/server/source/source_stats.py:E116,E501
xpra/server/window/compress.py:E501
xpra/server/mixins/fileprint.py:E241
xpra/server/mixins/controlcommands.py:E501,E241
xpra/platform/gui.py:E241
xpra/platform/paths.py:E302
xpra/platform/posix/gui.py:E241
"""