-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
37 lines (33 loc) · 1000 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
[tool.poetry]
name = "IreneBot"
version = "2.0"
description = "The client for the discord bot Irene."
authors = ["MujyKun <mujy@irenebot.com>", "A-Phamfam <alextampham3000@gmail.com>"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
]
readme = "README.md"
homepage = "https://irenebot.com/"
repository = "https://github.com/MujyKun/IreneBot"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
aiohttp = "3.9.5"
asyncpg = "0.25.0"
python-dotenv = "0.20.0"
black = "^22.8.0"
pre-commit = "2.19.0"
mypy = "0.961"
numexpr = "^2.8.1"
#ireneapiwrapper = "2.4"
#ireneapiwrapper = {git = "https://github.com/MujyKun/IreneAPIWrapper.git"}
ireneapiwrapper = {path = "../IreneAPIWrapper", develop=true}
disnake = "2.9.2"
Levenshtein = "^0.20.9"
psutil = "^5.9.4"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"