-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
56 lines (52 loc) · 1.33 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
48
49
50
51
52
53
54
55
56
[tool.poetry]
name = "crimsobot"
version = "0.0.0"
description = "A playful little Discord bot."
license = "MIT"
authors = ["Andrew <48505803@users.noreply.github.com>", "William McKinnerney <me@williammck.net>"]
readme = "README.rst"
homepage = "https://crimso.bot"
repository = "https://github.com/crimsobot/crimsoBOT"
[tool.poetry.dependencies]
aiofiles = "^0.7.0"
aiomysql = "^0.0.22"
aiosqlite = "^0.16.0"
click = "^8.0.3"
colormath = "^3.0.0"
"discord.py" = "^1.5.0"
"discord-ext-menus" = { git = "https://github.com/Rapptz/discord-ext-menus.git", branch = "master" }
geopy = "^2.0.0"
lxml = "^4.6.5"
markovify = "^0.9.3"
matplotlib = "^3.1.1"
numpy = "^1.17.4"
Pillow = "^9.0.1"
pyshorteners = "^1.0.1"
python = ">=3.7.0,<3.11"
PyYAML = "^6.0"
requests = "^2.22.0"
scipy = "^1.3.2"
tortoise-orm = "0.16.13"
pendulum = "^2.1.2"
tabulate = "^0.8.7"
timezonefinder = "^5.2.0"
beautifulsoup4 = "^4.10.0"
[tool.poetry.dev-dependencies]
bandit = "^1.6.2"
flake8 = "^4.0.1"
flake8-import-order = "^0.18.1"
flake8-bugbear = "*"
flake8-builtins = "^1.4.1"
flake8-quotes = "^3.2.0"
mccabe = "^0.6.1"
mypy = "^0.910"
pep8-naming = "^0.12.1"
pre-commit = "^2.6.0"
types-PyYAML = "^6.0.1"
types-tabulate = "^0.8.3"
types-aiofiles = "^0.7.0"
[tool.poetry.scripts]
bot = "cli:run"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"