-
Notifications
You must be signed in to change notification settings - Fork 233
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 1023 Bytes
/
pyproject.toml
File metadata and controls
41 lines (34 loc) · 1023 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
[project]
name = "gameplan"
authors = [
{ name = "Frappe Technologies Pvt Ltd", email = "developers@frappe.io" },
]
description = "Team discussion and collaboration tool"
requires-python = ">=3.10"
readme = "README.md"
dynamic = ["version"]
dependencies = ["faker==37.3.0", "bleach~=6.3.0", "bleach-allowlist~=1.0.3"]
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[tool.ruff]
line-length = 110
target-version = "py310"
[tool.ruff.lint]
select = ["F", "E", "W", "I", "UP", "B"]
ignore = [
"F403", # can't detect undefined names from * import
"W191", # indentation contains tabs
]
[tool.ruff.lint.per-file-ignores]
"**/demo/**" = ["E501"] # Disable line too long for demo files
[tool.ruff.format]
quote-style = "double"
indent-style = "tab"
docstring-code-format = true
[tool.bench.frappe-dependencies]
frappe = ">=16.0.0-dev,<=17.0.0-dev"
[tool.bench.assets]
build_dir = "./frontend"
out_dir = "./gameplan/public/frontend"
index_html_path = "./gameplan/www/g.html"