-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (47 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (47 loc) · 1.54 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
48
49
50
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dextop-mode"
version = "1.1.2"
description = "DeXtop Mode: Samsung DeX & Android Desktop Mode on Linux, macOS & Windows"
readme = "README.md"
authors = [
{ name = "Romain Guillon (super-magistro)" }
]
license = { text = "MIT" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Hardware",
"Topic :: Utilities"
]
dependencies = [
"customtkinter>=5.2.0",
"Pillow",
"qrcode",
"zeroconf>=0.13.0"
]
requires-python = ">=3.8"
[project.scripts]
dextop-mode = "dextop:main"
dextop = "dextop:main"
[project.urls]
Homepage = "https://github.com/super-magistro/DeXtop-mode"
Repository = "https://github.com/super-magistro/DeXtop-mode"
"Bug Tracker" = "https://github.com/super-magistro/DeXtop-mode/issues"