-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
34 lines (30 loc) · 880 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
[tool.poetry]
name = "hallo"
version = "3.0.0"
description = "Hallo, a bot for irc and telegram, built for flexibility, with reloadable modules"
authors = ["Joshua Coales <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7"
python-telegram-bot = "13.0.0"
python-dateutil = "2.8.2"
beautifulsoup4 = "4.9.3"
requests = "2.26.0"
duolingo-api = "0.5.4"
publicsuffixlist = "0.7.8"
isodate = "0.6.0"
simple-heartbeat = "0.1.2"
yippi = "0.2.0.1"
prometheus-client = "^0.12.0"
cffi = "^1.15.1"
[tool.poetry.dev-dependencies]
pytest = "6.2.5"
requests-mock = "1.9.3"
taskipy = "^1.8.1"
[tool.taskipy.tasks]
test = "py.test -m \"not external_integration and not slow\""
test_external = "py.test -m \"external_integration\""
test_slow = "py.test -m \"slow\""
run = "python3 run.py"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"