-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.45 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
[project]
name = "vineapp"
description = "Serra Vine demo application"
authors = [
{ name = "Marijn van der Zee", email = "[email protected]" },
{ name = "claude-sonnet-3.5-beta", email = "[email protected]" },
]
requires-python = ">=3.10"
urls = { "project" = "https://github.com/serraict/vine-demo-app", "docs" = "https://github.com/serraict/vine-demo-app/blob/main/README.md" }
dependencies = [
"nicegui",
"typer",
"sqlmodel",
"rich",
"sqlalchemy-dremio",
"pyarrow",
"pandas",
]
dynamic = ["version"]
license.file = "LICENCE"
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project.scripts]
#webapp = "vineapp.__web__:main"
cliapp = "vineapp.__cli__:cli"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
markers = [
"integration: marks tests as integration tests (deselect with '-m \"not integration\"')",
"asyncio: mark test as async",
]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
addopts = "-p nicegui.testing.user_plugin"
filterwarnings = [
# Ignore HTTPX deprecation warning from NiceGUI testing plugin
"ignore:The 'app' shortcut is now deprecated:DeprecationWarning:httpx",
]
[tool.mdformat]
wrap = 80
number = false
end_of_line = "lf"
[tool.mdformat.plugins]
gfm = { task_list_item = true }