@@ -6,9 +6,7 @@ license = "LicenseRef-Proprietary"
66readme = " README.md"
77requires-python = " >=3.10, <4.0"
88keywords = [" reflex" , " python" , " reflex-enterprise" ]
9- authors = [
10- {name = " Masen Furer" , email =" masen@reflex.dev" },
11- ]
9+ authors = [{ name = " Masen Furer" , email = " masen@reflex.dev" }]
1210dependencies = [
1311 " reflex-enterprise (>=0.3.0)" ,
1412 " cryptography" ,
@@ -35,33 +33,56 @@ bump = true
3533metadata = false
3634
3735[dependency-groups ]
38- dev = [
39- " pre-commit ==4.2.0" ,
40- " pyright >=1.1.400" ,
41- ]
36+ dev = [" pre-commit ==4.2.0" , " pyright >=1.1.400" ]
4237
4338[tool .ruff ]
4439target-version = " py310"
4540output-format = " concise"
4641lint.isort.split-on-trailing-comma = false
47- lint.select = [" ANN001" ," B" , " C4" , " D" , " E" , " ERA" , " F" , " FURB" , " I" , " N" , " PERF" , " PGH" , " PTH" , " RUF" , " SIM" , " T" , " TRY" , " W" ]
48- lint.ignore = [" B008" , " D205" , " E501" , " F403" , " SIM115" , " RUF006" , " RUF008" , " RUF012" , " TRY0" ]
42+ lint.select = [
43+ " ANN001" ,
44+ " B" ,
45+ " C4" ,
46+ " D" ,
47+ " E" ,
48+ " ERA" ,
49+ " F" ,
50+ " FURB" ,
51+ " I" ,
52+ " N" ,
53+ " PERF" ,
54+ " PGH" ,
55+ " PTH" ,
56+ " RUF" ,
57+ " SIM" ,
58+ " T" ,
59+ " TRY" ,
60+ " W" ,
61+ ]
62+ lint.ignore = [
63+ " B008" ,
64+ " D205" ,
65+ " E501" ,
66+ " F403" ,
67+ " SIM115" ,
68+ " RUF006" ,
69+ " RUF008" ,
70+ " RUF012" ,
71+ " TRY0" ,
72+ ]
4973lint.pydocstyle.convention = " google"
5074
5175
5276[tool .ruff .lint .per-file-ignores ]
5377"*.pyi" = [" D301" , " D415" , " D417" , " D418" , " E742" , " N" , " PGH" ]
54- "**/alembic/*.py" = [" D" ," ERA" ]
78+ "**/alembic/*.py" = [" D" , " ERA" ]
5579"tests/*.py" = [" ANN001" , " D" ]
5680"demos/*.py" = [" ANN001" , " D" , " ERA" ]
5781".flexdown/*.py" = [" ANN001" , " D" , " F401" ]
5882"__init__.py" = [" ERA" ]
5983
6084[tool .pyright ]
61- reportIncompatibleMethodOverride = false
62- reportMissingImports = false
63- reportInconsistentOverload = false
64- exclude = [" **/alembic/*" , " demos/*" , " reflex_enterprise/components/mantine/*.pyi" ]
85+
6586
6687[tool .pytest .ini_options ]
6788filterwarnings = " ignore:fields may not start with an underscore:RuntimeWarning"
0 commit comments