-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (45 loc) · 1.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
[project]
name = "PyQtier"
version = "0.1.1"
authors = [
{ name = "Korzhak", email = "[email protected]" },
]
description = "Make your onw desktop app faster"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"click==8.1.7",
"colorama==0.4.6",
"PyQt5==5.15.9",
"pyqt5-plugins==5.15.9.2.3",
"PyQt5-Qt5==5.15.2",
"pyqt5-tools==5.15.9.3.3",
"python-dotenv==1.0.1",
"qt5-applications==5.15.2.2.3",
"qt5-tools==5.15.2.1.3",
"pyserial==3.5"
]
[project.urls]
Homepage = "https://github.com/Korzhak/PyQtier"
Issues = "https://github.com/Korzhak/PyQtier/issues"
[project.scripts]
pyqtier = "pyqtier.scripts.cli:cli"
[tool.setuptools]
package-dir = { "" = "src" }
packages = [
"pyqtier",
"pyqtier.scripts",
"pyqtier.widgets",
"pyqtier.plugins",
"pyqtier.plugins.usb_plugin",
"pyqtier.plugins.usb_plugin.models",
"pyqtier.plugins.usb_plugin.views",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"