forked from kodlyft/xpos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·46 lines (38 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
executable file
·46 lines (38 loc) · 1.19 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
[project]
name = "xpos"
authors = [
{ name = "Ali Raza", email = "ar.frappe.dev@gmail.com"}
]
description = "A modern, offline-capable Point of Sale application for Frappe and ERPNext"
requires-python = ">=3.10"
readme = "README.md"
license = { text = "MIT" }
dynamic = ["version"]
keywords = ["frappe", "erpnext", "xpos", "point-of-sale", "retail", "offline", "electron", "pwa"]
dependencies = [
# "frappe~=15.0.0" # Installed and managed by bench.
"python-barcode>=0.15.1",
"qrcode[pil]>=7.4",
]
[project.urls]
Homepage = "https://github.com/aliraxa29/xpos"
Repository = "https://github.com/aliraxa29/xpos"
Issues = "https://github.com/aliraxa29/xpos/issues"
Changelog = "https://github.com/aliraxa29/xpos/releases"
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
# These dependencies are only installed when developer mode is enabled
[tool.bench.dev-dependencies]
# package_name = "~=1.1.0"
[tool.bench.frappe-dependencies]
frappe = ">=16.0.0,<17.0.0"
[tool.ruff]
line-length = 110
target-version = "py310"
[tool.ruff.lint]
typing-modules = ["frappe.types.DF"]
[tool.ruff.format]
quote-style = "double"
indent-style = "tab"
docstring-code-format = true