-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 960 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 960 Bytes
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
[tool.poetry]
name = "hallo"
version = "3.0.0"
description = "Hallo, a bot for irc and telegram, built for flexibility, with reloadable modules"
authors = ["Roselyn Coales <roselyn@coales.co.uk>"]
[tool.poetry.dependencies]
python = "^3.10"
python-telegram-bot = "^13.0.0"
python-dateutil = "^2.9.0.post0"
beautifulsoup4 = "^4.14.3"
requests = "^2.33.1"
duolingo-api = "^0.5.4"
publicsuffixlist = "^1.0.2.20260412"
isodate = "^0.7.2"
simple-heartbeat = "^0.1.3"
yippi = "^0.2.0.1"
prometheus-client = "^0.12.0"
cffi = "^1.15.1"
yarl = "^1.23.0"
standard-pkg-resources = "^1.0.0"
[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"