-
Notifications
You must be signed in to change notification settings - Fork 249
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (63 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
67 lines (63 loc) · 1.24 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[project]
name = "print_designer"
authors = [
{ name = "Frappe Technologies Pvt Ltd", email = "hello@frappe.io"}
]
description = "Frappe App to Design Print Formats using interactive UI."
requires-python = ">=3.10"
readme = "README.md"
dynamic = ["version"]
dependencies = [
"PyQRCode~=1.2.1",
"pypng~=0.20220715.0",
"python-barcode~=0.15.1",
"websockets",
"distro",
]
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[tool.black]
line-length = 99
[tool.isort]
line_length = 99
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
indent = "\t"
[deploy.dependencies.apt]
packages = [
"fonts-liberation",
"libatk-bridge2.0-0",
"libatk1.0-0",
"libatspi2.0-0",
"libgbm1",
"libgtk-3-0",
"libnspr4",
"libnss3",
"xdg-utils",
"libvulkan1",
"libxcomposite1",
"libxdamage1",
"libxfixes3",
"libxkbcommon0",
"libxrandr2",
"libasound2",
]
# already installed
# "ca-certificates",
# "libc6",
# "libcairo2",
# "libcups2",
# "libdbus-1-3",
# "libexpat1",
# "libglib2.0-0",
# "libpango-1.0-0",
# "wget",
# "libudev1",
# "libx11-6",
# "libxcb1",
# "libxext6",
# "libcurl3-gnutls",