-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (61 loc) · 1.85 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
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pyvista-webapp"
authors = [
{name = "Alex Kaszynski", email = "[email protected]"},
]
description = "PyVista web application using FastAPI, React, and Next.js."
home-page = "https://github.com/pyvista/pyvista-fastapi-webapp"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: FastAPI",
]
description-file = "README.md"
dynamic = ["version"]
license = {file = "LICENSE"}
dependencies = [
"click",
"fastapi[all]>=0.109.0",
"pytetwild>=0.1.dev1",
"pyvista>=0.43.0",
"uvicorn==0.26.0"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"httpx",
"pre-commit",
]
[project.scripts]
pyvista_webapp = "pyvista_webapp.cli:cli"
[tool.mypy]
plugins = "sqlalchemy.ext.mypy.plugin"
[tool.ruff]
target-version = 'py310'
line-length = 100
indent-width = 4
ignore = []
[tool.ruff.pydocstyle]
convention = "numpy"
[tool.pytest.ini_options]
filterwarnings = [
'ignore::FutureWarning',
'ignore::PendingDeprecationWarning',
'ignore::DeprecationWarning',
'ignore::UserWarning'
]
testpaths = 'tests'
[tool.codespell]
skip = '*.pyc,*.txt,*.gif,*.png,*.jpg,*.ply,*.vtk,*.vti,*.vtu,*.js,*.html,*.doctree,*.ttf,*.woff,*.woff2,*.eot,*.mp4,*.inv,*.pickle,*.ipynb,flycheck*,./.git/*,./.hypothesis/*,*.yml,doc/_build/*,./doc/images/*,./dist/*,*~,.hypothesis*,./doc/examples/*,*.mypy_cache/*,*cover,*pyvista_webapp/frontend/_next/static/chunks/*,frontend/yarn.lock'
quiet-level = 3