-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (54 loc) · 995 Bytes
/
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
[tool.poetry]
name = "playground"
version = "0.1.0"
description = ""
authors = ["Lisa Gilyarovskaya <lisa.gilyarovskaya@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
uvicorn = "^0.20.0"
fastapi = "^0.89.1"
pandas = "^1.5.2"
numpy = "^1.24.1"
flake8 = "^6.0.0"
pre-commit = "^2.21.0"
isort = "^5.11.4"
psycopg2-binary = "^2.9.5"
python-dotenv = "^0.21.1"
SQLAlchemy-Utils = "^0.39.0"
alembic = "^1.9.2"
greenlet = "^2.0.1"
logging = "^0.4.9.6"
sqlmodel = "^0.0.8"
httptools = "^0.5.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
black = "^22.12.0"
isort = "^5.11.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
line_length = 79
[tool.black]
line-length = 79
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| venv
| _build
| buck-out
| build
| dist
| migrations
| alembic
)/
'''