-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (70 loc) · 1.58 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[tool.poetry]
name = "clover-dating-bot"
version = "0.1.11"
description = "Chat-bot for dating..."
authors = ["AnyGlitch <WhyGlitches@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/AnyGlitch/clover-dating-bot"
repository = "https://github.com/AnyGlitch/clover-dating-bot.git"
keywords = ["python", "aiogram"]
include = ["CHANGELOG.md", "LICENSE", "README.md"]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
[tool.poetry.dependencies]
python = "^3.10"
aiogram = {extras = ["redis"], version = "^3.0.0b", allow-prereleases = true}
aerich = "^0.7.1"
tortoise-orm = {extras = ["asyncpg"], version = "^0.19.3"}
geopy = "^2.3.0"
python-decouple = "^3.8"
[tool.poetry.dev-dependencies]
pre-commit = "^3.3.3"
mypy = "^1.3.0"
ruff = "0.0.272"
black = "^23.3.0"
[tool.aerich]
tortoise_orm = "source.config.TORTOISE_ORM"
location = "./migrations"
src_folder = "./."
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
line-length = 80
target-version = "py310"
exclude = ["migrations"]
select = [
"F",
"E",
"W",
"I",
"UP",
"B",
"COM",
"C4",
"EXE",
"G",
"PIE",
"PT",
"Q",
"RSE",
"RET",
"SIM",
"TID",
"TCH",
"ERA",
]
[tool.black]
line-length = 80
target-version = ["py310"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"