-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.1 KB
/
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
42
43
44
45
46
47
[tool.poetry]
name = "halpybot"
version = "2.0.0-alpha"
license = "GPL-3.0-only"
description = "The Hull Seals IRC Utility bot, built with Pydle."
authors = [
"David Sangrey <[email protected]>",
"Rik Overveld <[email protected]>"
]
readme = "README.md"
repository = "https://github.com/HullSeals/HalpyBOT"
[tool.poetry.dependencies]
python = ">=3.8,<3.10"
pydle = {extras = ["sasl"], version = "^1.0.1"}
mysqlclient = "^2.2.4"
numpy = "^1.24.4"
boto3 = "^1.34.76"
aiohttp = "^3.9.5"
gitpython = "^3.1.43"
requests = "^2.31.0"
pyperclip = "^1.8.2"
tqdm = "^4.66.2"
attrs = "^23.2.0 "
cattrs = "^23.2.3 "
loguru = "^0.7.0"
pydantic = {extras = ["dotenv"], version = "^2.7.0"}
sqlalchemy = "^2.0.29"
beautifulsoup4 = "^4.12.3"
lxml = "^5.2.1"
pendulum = "^3.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
pytest-httpserver = "^1.0.6"
pytest-asyncio = "^0.23.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.'MESSAGES CONTROL']
extension-pkg-whitelist = "pydantic"
disable = "line-too-long"
[tool.pytest.ini_options]
asyncio_mode = "auto"