-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 814 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (32 loc) · 814 Bytes
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
[tool.poetry]
name = "python-ts-graphql-demo"
version = "0.1.0"
description = ""
authors = ["Jökull Sólberg Auðunsson <jokull@solberg.is>"]
[tool.poetry.dependencies]
python = "^3.9"
SQLAlchemy = {version = "^1.4.26", extras = ["asyncio"]}
strawberry-graphql = "^0.85.1"
starlette = "^0.16.0"
uvicorn = "^0.15.0"
aiosqlite = "^0.17.0"
greenlet = "^1.1.2"
[tool.poetry.dev-dependencies]
black = "^21.10b0"
flake8 = "^4.0.1"
isort = "^5.10.0"
bandit = "^1.7.0"
sqlalchemy2-stubs = "^0.0.2-alpha.19"
mypy = "^0.910"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 99
[tool.isort]
profile = "black"
[tool.flake8]
max-line-length = 99
[tool.mypy]
plugins = "strawberry.ext.mypy_plugin,sqlalchemy.ext.mypy.plugin"
implicit_reexport = false