-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 763 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (34 loc) · 763 Bytes
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
[build-system]
requires = [
"setuptools>=61",
"packaging>=23"
]
build-backend = "setuptools.build_meta"
[project]
authors = [{ name = "Takaya Inoue" }]
maintainers = [{ name = "AUTO Kobo headquarters" }]
readme = "README.md"
name = "usb-util"
version = "0.1.1"
license = { text = "MIT" }
description = "USB utility helpers"
requires-python = ">=3.10"
dependencies = [
"customtkinter>=5.2.0",
"Pillow>=10.0.0",
"aist_guiparts>=0.1.0",
"pyusb>=1.2.1",
"pyserial>=3.5",
"ak_communication>=0.1.0",
"bleak>=0.21.0"
]
[project.scripts]
usb-util-gui = "usb_util_gui:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["core", "ui"]
[tool.setuptools]
py-modules = ["usb_util_gui"]
[tool.metadata]
author = "Takaya Inoue"
copyright = "AUTO kobo"