-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.03 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
[tool.black]
line-length = 100
[tool.poetry]
name = "BDDUC"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = "^3.9"
sqlmodel = {extras = ["psycopg2"], version = "^0.0.6"}
psycopg2 = "^2.9.1"
fastapi = "^0.70.0"
strawberry-graphql = "^0.85.0"
fastapi-pagination = {extras = ["SQLAlchemy"], version = "^0.9.0"}
mkdocs-material = "^7.3.4"
mkdocs-git-revision-date-localized-plugin = "^0.10.0"
uvicorn = {extras = ["standard"], version = "^0.15.0"}
python-dotenv = "^0.19.1"
beautifulsoup4 = "^4.10.0"
lxml = "^4.6.3"
aiohttp = {extras = ["speedups"], version = "^3.8.1"}
aiohttp-client-cache = {extras = ["sqlite"], version = "^0.5.2"}
sympy = "^1.10.1"
SQLAlchemy = ">=1.4.17,<=1.4.35"
[tool.poetry.dev-dependencies]
black = "^22.6.0"
mypy = "^0.961"
strawberry-graphql = {extras = ["debug-server"], version = "^0.85.0"}
pytest = "^6.2.5"
pre-commit = "^2.19.0"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"