-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (34 loc) · 962 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
[tool.poetry]
name = "fk-kiltisbot"
version = "0.1.0"
description = "Telegram bot for managing item & account balances, and showing calendar summaries"
authors = ["Fyysikkokilta ry <[email protected]>"]
readme = "README.md"
packages = [{include = "kiltisbot"}]
[tool.poetry.dependencies]
python = "^3.11"
google-api-core = '1.23.0'
google-api-python-client = '1.12.5'
google-auth = '1.23.0'
matplotlib = '3.3.2'
pandas = '1.5.3'
Pillow = '10.3.0'
python-telegram-bot = {extras = ["job-queue"], version = "^20.3"}
requests = '2.24.0'
[tool.poetry.group.dev.dependencies]
poethepoet = "^0.20.0"
black = "^23.3.0"
pyright = "^1.1.310"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
[tool.black]
line-length = 120
[tool.poe.tasks]
_black_check = "black --check ."
_type_check = "pyright ."
_lint = "ruff ."
lint = ["_black_check", "_lint", "_type_check"]
run.script = "kiltisbot.bot:main()"