-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 892 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 892 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
[project]
name = "biometric_integration"
authors = [
{ name = "NDV", email = "ndvadalia1@gmail.com"}
]
description = "Seamlessly sync biometric attendance data with your system for accurate and automated tracking."
requires-python = ">=3.10"
readme = "README.md"
dynamic = ["version"]
dependencies = []
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[tool.bench.frappe-dependencies]
frappe = ">=15.0.0,<=17.0.0"
[tool.bench.dev-dependencies]
[tool.ruff]
line-length = 110
target-version = "py310"
[tool.ruff.lint]
select = ["F","E","W","I","UP","B","RUF"]
ignore = [
"B017","B018","B023","B904","E101","E402","E501","E741",
"F401","F403","F405","F722","W191","UP030","UP031","UP032",
"UP037","UP040",
]
typing-modules = ["frappe.types.DF"]
[tool.ruff.format]
quote-style = "double"
indent-style = "tab"
docstring-code-format = true