-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
63 lines (55 loc) · 1.28 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
[project]
name = "reflex-chakra"
dynamic = ["version"]
description = "reflex using chakra components"
authors = [{ name = "Elijah Ahianyo", email = "elijahahianyo@gmail.com" }]
maintainers = [
{ name = "Khaleel Al-Adhami", email = "khaleel@reflex.dev" },
{ name = "Masen Furer", email = "masen@reflex.dev" },
{ name = "Thomas Brandeho", email = "thomas@reflex.dev" },
]
readme = "README.md"
requires-python = ">=3.10"
license.text = "Apache-2.0"
dependencies = ["reflex >=0.8.0dev"]
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["reflex_chakra"]
[tool.hatch.version]
source = "uv-dynamic-versioning"
[dependency-groups]
dev = ["ruff", "pyright"]
[tool.ruff]
target-version = "py310"
lint.select = ["ALL"]
lint.pydocstyle.convention = "google"
lint.ignore = [
"A",
"ANN001",
"ANN002",
"ANN003",
"ANN2",
"ANN4",
"BLE",
"COM",
"E501",
"ERA001",
"F403",
"F405",
"FBT",
"PLR",
"PLW",
"PYI021",
"S307",
"SLF",
"TC002",
"UP038",
]
lint.allowed-confusables = ["’"]
[tool.ruff.lint.per-file-ignores]
"*.pyi" = ["D301", "D415", "D417", "N803"]
"docs/*" = ["D", "INP001"]
[tool.pyright]
reportIncompatibleMethodOverride = "warning"