-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
57 lines (52 loc) · 1.07 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
[build-system]
requires = ["setuptools", "wheel", "poetry^1.0"]
build-backend = "setuptools.build_meta"
[tool.poetry]
name = "cognito-emulator"
version = "0.0.0"
description = ""
authors = ["Moriyoshi Koizumi <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
starlette = "^0.13.8"
authlib = "^0.15"
uvicorn = "^0.11.8"
environs = "^8.0.0"
sqlalchemy = "^1.3.19"
pymysql = "^0.10.1"
ujson = "^3.2.0"
itsdangerous = "^1.1.0"
python-multipart = "^0.0.5"
Jinja2 = "^2.11.2"
aiofiles = "^0.5.0"
argon2-cffi = "^20.1.0"
click = "^7.1.2"
typesystem = "^0.2.4"
srp = "^1.0.16"
flake8 = "^3.8.4"
async_lru = "^1.0.2"
httpx = "^0.16.1"
[tool.poetry.dev-dependencies]
pytest = "^6.1.0"
mypy = "^0.782"
black = "^20.8b1"
isort = "^5.5.3"
sqlalchemy-stubs = "^0.3"
alembic = "^1.4.3"
sqlalchemy-seeder = {git = "https://github.com/ricekab/sqlalchemy-seeder.git"}
flake8 = "^3.8.4"
[tool.isort]
profile = "black"
include_trailing_comma = true
multi_line_output = 3
skip = """
.eggs
.git
.mypy_cache
.nox
.pytest_cache
.tox
.venv
venv
alembic
"""