-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 947 Bytes
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 947 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
41
42
43
44
45
46
47
48
[project]
name = "erpnext_tafel_oesterreich"
authors = [
{ name = "K&K Software AG", email = "erpnext-support@kk-software.de"}
]
description = "New Frappe App for Die Tafel Oesterreich"
requires-python = ">=3.11"
readme = "README.md"
dynamic = ["version"]
dependencies = [
# "frappe~=15.0.0" # Installed and managed by bench.
]
[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]
mkdocs = "~=1.6.0"
mkdocs-awesome-pages-plugin = "~=2.9.2"
mkdocs-mermaid2-plugin = "~=1.1.1"
[tool.setuptools]
py-modules = ['erpnext_tafel_oesterreich']
[tool.ruff]
line-length = 90
target-version = "py311"
lint.select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# isort
"I",
]
lint.ignore = [
"E111",
"E114",
"E117",
"E501"
]