-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.08 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
[tool.poetry]
name = "minisite"
version = "0.1.0"
description = "A minimal dynamic website written in Python, based on FastAPI"
authors = [
"Andreas Motl <[email protected]>",
]
license = "AGPL"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.7"
fastapi = "^0.45.0"
uvicorn = "^0.11.1"
loguru = "^0.4.0"
Jinja2 = "^2.11.3"
munch = "^2.5.0"
SQLAlchemy = {extras = ["mysql"], version = "^1.4.12"}
FastAPI-SQLAlchemy = "^0.2.1"
passlib = "^1.7.4"
[tool.poetry.dev-dependencies]
pytest = "^6.2.3"
black = {version = "^19.10b0", allow-prereleases = true}
isort = "^5.8.0"
autopep8 = "^1.4.4"
flake8 = "^3.9.1"
flakehell = "^0.9.0"
async-asgi-testclient = "^1.4.6"
pytest-asyncio = "^0.15.1"
[tool.poetry.scripts]
minisite = 'minisite.main:run'
[tool.flakehell]
max-line-length = 90
exclude = []
extended_default_ignore = []
[tool.flakehell.plugins]
pycodestyle = ["+*", "-E203", "-W503"]
pyflakes = ["+*"]
flake8-bandit = ["+*"]
flake8-black = ["+*"]
flake8-bugbear = ["+*"]
flake8-isort = ["+*"]
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"