-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (47 loc) · 1.1 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
[tool.poetry]
name = "pdb-social-network"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
packages = [{include = "pdb_social_network"}]
[tool.poetry.dependencies]
python = "^3.11"
litestar = {extras = ["sqlalchemy", "standard"], version = "^2.2.1"}
pika = "^1.3.2"
pre-commit = "^3.5.0"
pytest = "^7.4.2"
vcrpy = "^5.1.0"
pydantic = "^2.4.2"
sqlalchemy = "^2.0.22"
aiosqlite = "^0.19.0"
asyncpg = "^0.28.0"
motor = "^3.3.1"
python-jose = "^3.3.0"
cryptography = "^41.0.5"
passlib = "^1.7.4"
bcrypt = "^4.0.1"
faker = "^20.1.0"
psycopg2-binary = "^2.9.9"
pytz = "^2023.3.post1"
werkzeug = "^3.0.1"
requests = "^2.31.0"
[tool.black]
line-length = 100
target-version = ['py311']
skip-string-normalization = true
[tool.isort]
include_trailing_comma = true
use_parentheses = true
ensure_newline_before_comments = true
known_first_party = 'app'
line_length = 100
indent = ' '
multi_line_output = 3
force_grid_wrap = 0
[tool.pytest.ini_options]
testpaths = ["tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"