-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (43 loc) · 1.33 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "reflex-google-recaptcha-v2"
description = "Google ReCAPTCHA v2 Integration"
readme = "README.md"
license = { text = "Apache-2.0" }
requires-python = ">=3.10"
authors = [{ name = "Masen Furer", email = "[email protected]" }]
keywords = [
"reflex",
"reflex-custom-components"]
dependencies = [
"httpx>=0.25.1",
"reflex>=0.6.8",
]
classifiers = [
"Development Status :: 4 - Beta",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/masenf/reflex-google-recaptcha-v2"
[project.optional-dependencies]
dev = ["build", "twine"]
[tool.setuptools.packages.find]
where = ["custom_components"]
[tool.ruff]
target-version = "py310"
output-format = "concise"
lint.isort.split-on-trailing-comma = false
lint.select = ["B", "C4", "E", "ERA", "F", "FURB", "I", "N", "PERF", "PTH", "RUF", "SIM", "T", "TRY", "W"]
lint.ignore = ["B008", "D205", "E501", "F403", "SIM115", "RUF006", "RUF008", "RUF012", "TRY0"]
lint.pydocstyle.convention = "google"
include = ["custom_components/**/*.py", "*_demo/**/*.py"]
exclude = ["*/alembic/*"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"env.py" = ["ALL"]
"*/alembic/**/*.py" = ["ALL"]
[tool.pyright]
exclude = ["*/alembic/*"]
[tool.setuptools_scm]