forked from cofin/fastapi-vite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (44 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
47 lines (44 loc) · 1.3 KB
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
[tool.poetry]
name = "fastapi_vite_dara"
version = "0.4.0"
description = "Fork of fastapi-vite to support wider range of jinja2 version."
classifiers = [
"License :: OSI Approved :: MIT License",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
]
authors = ["causaLens <support@causalens.com>", "Cody Fincher <cody.fincher@gmail.com>"]
keywords = ["fastapi","starlette","vite","dara"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/causalens/fastapi-vite"
repository = "https://github.com/causalens/fastapi-vite"
packages = [
{ include = "fastapi_vite_dara", from = "src/"}
]
[tool.poetry.dependencies]
python = ">=3.10,<4"
fastapi = ">=0.100.0"
Jinja2 = "*"
pydantic = ">=1.10.17, <3.0.0"
[tool.poetry.group.dev.dependencies]
python-dotenv = "^0.21.0"
pytest = ">=6.2.4"
pytest-cov = ">=3.0.0"
pytest-asyncio = ">=0.16.0"
pre-commit = ">=2.17.0"
bump2version = ">=1.0.1"
isort = ">=5.10.1"
flake8 = ">=4.0.1"
pylint = ">=2.12.2"
black = ">=21.12b0"
autoflake = ">=1.4"
pip-licenses = ">=3.5.3"
wemake-python-styleguide = ">=0.16.0"
uvicorn = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"