-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (61 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (61 loc) · 1.38 KB
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
[tool.poetry]
name = "telegramexchangeratesbot"
version = "1.5.4"
description = "Telegram bot actual exchange rates for travel, work and daily life."
authors = ["Lev Lybin <lev.lybin@gmail.com>"]
license = "GPL-3.0"
homepage = "https://telegram.me/ExchangeRatesBot"
repository = "https://github.com/llybin/TelegramExchangeRatesBot"
[tool.poetry.dependencies]
python = "^3.9"
alembic = "1.6.4"
beautifulsoup4 = "4.9.3"
babel = "2.9.1"
cached-property = "1.5.2"
celery = {version = "4.4.7", extras = ["redis"]}
celery-once = "3.0.1"
click = "8.0.1"
"dogpile.cache" = "1.1.3"
jsonschema = "3.2.0"
psycopg2-binary = "2.8.6"
python-telegram-bot = "13.5"
ratelimit = "2.2.1"
requests = {version = "2.25.1", extras = ["socks"]}
sentry-sdk = "1.1.0"
sqlalchemy = "1.3.24"
sqlalchemy-utils = "0.37.4"
"zope.sqlalchemy" = "1.4"
[tool.poetry.dev-dependencies]
iso4217 = "1.6.20180829"
vcrpy = "^4.1.0"
freezegun = "^1.1.0"
coverage = "^5.2.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.isort]
combine_as_imports = true
default_section = "THIRDPARTY"
line_length = 88
use_parentheses = true
include_trailing_comma = true
multi_line_output = 3
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.mypy_cache
| \.pytest_cache
| \.venv
| __pycache__
| _build
| build
| dist
)/
)
'''