-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (46 loc) · 1.43 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
55
56
57
58
59
[tool.poetry]
name = "reactpy-table"
version = "0.0.14"
description = "Headless UI for building powerful tables"
authors = ["Steve Jones <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/stevej2608/reactpy-table/blob/master/README.md"
repository = "https://github.com/stevej2608/reactpy-table"
include = ["reactpy-tablet/*.py"]
[tool.poetry.dependencies]
python = "^3.11"
reactpy = "^1.0.2"
[tool.poetry.group.dev.dependencies]
pytest-timeout = "2.2.0"
fastapi = "^0.109.0"
playwright = "1.41.1"
pytest = "^7.4.4"
pytest-asyncio = "^0.23.3"
starlette = ">=0.13.6"
trio = "^0.24.0"
twine = "^4.0.2"
uvicorn = {extras = ["standard"], version = ">=0.19.0"}
faker = "^24.3.0"
sqlmodel = "^0.0.16"
[tool.ruff]
# https://docs.astral.sh/ruff/configuration/
# https://marketplace.visualstudio.com/items?itemName=charliermarsh.ruff
line-length = 120
[tool.pyright]
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md#sample-pyprojecttoml-file
typeCheckingMode = "strict"
pythonVersion = "3.11"
[tool.pytest.ini_options]
testpaths = "tests"
log_cli_level = "INFO"
filterwarnings = "ignore::DeprecationWarning"
# -r Show extra test summary info as specified by chars:
# (s)kipped,
# (x)failed,
# (X)passed,
# addopts = "-rsxX"
# asyncio_mode = "auto"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"