forked from Nukesor/ultimate-poll-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (37 loc) · 902 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 = "ultimate-pollbot"
version = "1.6.0"
description = "A telegram bot for creating all kinds of polls."
authors = ["Arne Beer <contact@arne.beer>"]
license = "MIT"
repository = "https://github.com/nukesor/ultimate-poll-bot"
[tool.poetry.dependencies]
python = "^3.10"
alembic = "^1"
argparse = "^1"
matplotlib = "^3"
python-telegram-bot = "^13"
sentry-sdk = "^1"
SQLAlchemy = "^1"
sqlalchemy-utils = "^0.38"
pandas = "^1"
pillow = "^9"
psycopg2-binary = "^2"
python-dateutil = "^2"
python-i18n = { version = "^0.3", extras = ["yaml"] }
"ruamel.yaml" = "^0.17"
toml = "^0.10"
typer = "^0.6"
[tool.poetry.dev-dependencies]
autoflake = "^1"
black = { version = "*", allow-prereleases = true }
flake8 = "^5"
isort = "^5"
pytest = "^7"
types-toml = "^0.10"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.isort]
line_length = 88
profile = "black"