This repository was archived by the owner on Apr 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (72 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
81 lines (72 loc) · 1.56 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
name = "reflex-ui"
version = "0.0.1"
description = "A set of reusable components built on top of Base UI and Tailwind, designed for use across any Reflex project"
readme = "README.md"
requires-python = ">=3.11"
dependencies = ["reflex (>=0.8.0)"]
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.uv-dynamic-versioning]
vcs = "git"
style = "pep440"
bump = true
metadata = false
[dependency-groups]
dev = ["pyright", "pre-commit"]
[tool.codespell]
skip = "*.pyi, uv.lock"
[tool.ruff]
target-version = "py313"
output-format = "concise"
lint.isort.split-on-trailing-comma = false
lint.select = ["ALL"]
lint.ignore = [
"A",
"ANN002",
"ANN003",
"ANN2",
"ANN4",
"ARG",
"BLE",
"C901",
"COM",
"D205",
"DTZ",
"E501",
"F403",
"FBT",
"FIX",
"G004",
"ISC003",
"PLC",
"PLR",
"PLW",
"PT011",
"PT012",
"PYI",
"RUF012",
"S",
"SLF",
"SLOT",
"TC",
"TD",
"TRY0",
"UP038",
]
lint.pydocstyle.convention = "google"
[tool.ruff.lint.per-file-ignores]
"*.pyi" = ["D301", "D415", "D417", "D418", "E742", "N", "PGH"]
"**/alembic/*.py" = ["D", "ERA"]
"__init__.py" = ["ERA"]
"shared/reflex_ui_shared/**" = ["D100", "D101", "D102", "D103", "D104", "T201"]
[tool.pyright]
reportIncompatibleMethodOverride = false
reportMissingImports = false
reportInconsistentOverload = false
exclude = ["**/alembic/*", "demo/*", "reflex_ui/**/*.pyi"]
[tool.uv]
required-version = ">=0.7.0"