generated from extrange/project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (40 loc) · 1006 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
# View options here: https://python-poetry.org/docs/configuration
[tool.poetry]
description = ""
name = "mcq_bot"
version = "0.1"
authors = ["extrange <29305375+extrange@users.noreply.github.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
telethon = "^1.36.0"
uvloop = "^0.19.0"
pydantic = "^2.8.2"
pydantic-settings = "^2.4.0"
sqlalchemy = "^2.0.32"
sqlalchemy-utils = "^0.41.2"
openpyxl = "^3.1.5"
python-dateutil = "^2.9.0.post0"
schedule = "^1.2.2"
pytz = "^2024.1"
openai = "^1.43.0"
tqdm = "^4.66.5"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
pyright = "^1.1.375"
ruff = "^0.5.7"
pytest = "^8.3.2"
pytest-env = "^1.1.3"
[tool.poetry.scripts]
start = "mcq_bot.main:start"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py312"
# View rules here: https://docs.astral.sh/ruff/rules/
# [tool.ruff.lint]
# select = ["ALL"]
# ignore = [ "D211", "D212"]
[tool.pytest_env]
DB_PATH = ":memory:"