forked from blankoslo/blank.pizza
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (35 loc) · 979 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
[tool.poetry]
name = "kron.pizza"
version = "0.1.0"
description = ""
authors = ["Herman S <[email protected]>"]
packages = [{ include = "pizza" }]
[tool.poetry.dependencies]
python = "^3.9"
psycopg2 = "^2.9.3"
pytz = "^2021.3"
slack-sdk = "^3.14.1"
slack-bolt = "^1.11.4"
SQLAlchemy = "^1.4.32"
python-json-logger = "^2.0.2"
alembic = "^1.7.7"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
isort = "^5.10.1"
flake8 = "^4.0.1"
sqlalchemy-stubs = "^0.4"
ipython = "^8.1.1"
[tool.isort]
# The following settings resolve conflicts between isort and black.
# See: https://black.readthedocs.io/en/stable/compatible_configs.html
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88 # Should be the same as black's default line-length
[tool.black]
target-version = ["py39"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"