-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (36 loc) · 843 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
[tool.poetry]
name = "image-proccesing"
version = "0.1.0"
description = ""
authors = ["Eugene Vihrev <[email protected]>"]
readme = "README.md"
packages = [
{ include = "src" },
]
[tool.poetry.dependencies]
python = "^3.11"
click = "^8.1.7"
Pillow = "^10.0.0"
numpy = "^1.25.2"
python-telegram-bot = "^20.4"
pydantic-settings = "^2.0.3"
pydantic = "^2.3.0"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
mypy = "^1.5.1"
flake8 = "^6.1.0"
poethepoet = "^0.22.0"
isort = "^5.12.0"
types-pillow = "^10.0.0.2"
[tool.poetry.scripts]
stickers-utils = "src.main:stickers_utils"
[tool.black]
line-length = 120
[tool.mypy]
exclude = ["venv", "tests"]
[tool.poe.tasks]
lint = "python tests/main.py lint"
format = "python tests/main.py format"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"