-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (51 loc) · 957 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
[tool.poetry]
name = "ussdflow"
version = "0.1.10"
description = ""
authors = ["Adams Okode <[email protected]>"]
readme = "README.md"
packages = [
{ include = "ussdflow" }
]
[tool.poetry.dependencies]
python = "^3.10"
sqlalchemy = "^2.0.30"
pydantic = "^2.7.1"
redis = "^5.0.4"
psycopg2-binary = "^2.9.9"
[tool.poetry.group.dev.dependencies]
fastapi = "^0.111.0"
pytest = "^8.2.1"
pytest-mock = "^3.14.0"
pytest-postgresql = "^6.0.0"
pre-commit = "^3.7.1"
pylint = "^3.2.2"
flake8 = "^7.0.0"
autopep8 = "^2.1.1"
black = "^24.4.2"
isort = "^5.13.2"
autoflake = "^2.3.1"
flask = "^3.0.3"
django = "^5.0.6"
[tool.black]
line-length = 88
target-version = ['py37', 'py38', 'py39', 'py310']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"