-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
66 lines (59 loc) · 1.39 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
[tool.poetry]
name = "fast-tmp"
version = "1.1.19"
description = "fastapi tortoise amis admin"
authors = ["Chise1 <[email protected]>"]
include = ["LICENSE", "README.md"]
license = "Apache-2.0"
packages = [
{ include = "fast_tmp_cli" },
{ include = "fast_tmp" }
]
repository = "https://github.com/Chise1/fast-tmp"
[tool.poetry.dependencies]
python = "^3.8"
typer = "^0.7.0"
fastapi = "^0.95.0"
python-jose = "^3.3.0"
asgiref = "^3.5.2"
tortoise-orm = "^0.19.2"
python-multipart = "^0.0.6"
toml = "^0.10.2"
python-dotenv = "^1.0.0"
[tool.poetry.dev-dependencies]
cookiecutter = "^2.1.1"
flake8 = "*"
isort = "*"
black = "*"
pytest = "*"
pytest-xdist = "*"
pytest-cov = "*"
pytest-asyncio = "*"
asynctest = "*"
bandit = "*"
mypy = "0.971"
httpx = "^0.23.0"
toml = "^0.10.2"
mkdocs = "^1.3.2"
uvicorn = "^0.21.1"
aiofiles = "^23.1.0"
aiomysql = "^0.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
fast-tmp = "fast_tmp_cli:main"
[tool.bandit]
exclude_dirs = ["tests", "fast_tmp_cli/tpl"]
tests = ["B201", "B301"]
skips = ["B101", "B601"]
[tool.flake8]
ignore = "E203,E501,W503,DAR101,DAR201,DAR402"
max-line-length = 100
per-file-ignores = [
"tortoise/__init__.py:F401",
"tortoise/fields/__init__.py:F401",
"tortoise/backends/base/client.py:DAR401,DAR202",
"tortoise/contrib/test/__init__.py:DAR401",
]
docstring_style = "sphinx"