-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (53 loc) · 1019 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
57
58
59
60
[tool.poetry]
name = "hnread"
version = "0.1.0"
description = "A telegram hacker news puslisher"
authors = ["DPR <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
pydantic = "^1.9.1"
devtools = "^0.8.0"
httpx = "^0.23.0"
python-telegram-bot = "^13.12"
python-decouple = "^3.6"
types-redis = "^4.2.7"
redis = "^4.3.3"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
black = "^22.12.0"
click = "^8.1.3"
isort = "^5.11.4"
mypy = "^0.991"
commitizen = "^2.39.1"
pre-commit = "^2.21.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py36', 'py37', 'py38', 'py39', 'py310']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''
[tool.isort]
profile = "black"
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.0"
version_files = [
"pyproject.toml:version"
]