-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
54 lines (46 loc) · 956 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
[tool.poetry]
name = "alinka-pyside"
version = "0.3.1"
description = "Application for Supporting Center for Children"
authors = ["CodeForPoznań <[email protected]>"]
[tool.poetry.dependencies]
Jinja2 = "^3.1.4"
pydantic = "2.9.2"
pyside2 = "5.15.2.1"
python = "3.10.9"
SQLAlchemy = "2.0.4"
pydantic-settings = "^2.5.2"
alembic = "^1.13.2"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
factory-boy = "^3.2.1"
faker = "^18.4.0"
flake8 = "^5.0.4"
flake8-pyproject = "^1.2.3"
isort = "^5.10.1"
pyinstaller = "^5.10.1"
pytest = "^7.2.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.venv
| build
| dist
)/
'''
[tool.flake8]
max-line-length = 120
extend-ignore = ["E203"]
[tool.isort]
profile="black"
[tool.pytest.ini_options]
pythonpath = ["app"]