forked from CyberDiscovery/cyberdisc-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 834 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
[tool.poetry]
name = "cdbot"
version = "0.1.0"
description = "A Discord bot for the Cyber Discovery community."
authors = ["Cyber Discovery Community <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
aiohttp = "^3"
"discord.py" = "^1.2.5"
python = "^3.8"
python-dateutil = "^2.8"
asyncpg = "^0.20.1"
sentry-sdk = "^0.15.1"
Pillow = "^7.2"
gitpython = "^3"
httpx = "^0.13.3"
html2markdown = "^0.1.7"
aiocontextvars = "^0.2.2"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.3"
flake8-bandit = "^2"
flake8-bugbear = "^20"
flake8-import-order = "^0.18"
flake8-string-format = "^0.3.0"
flake8-tidy-imports = "^4"
flake8-todo = "^0.7"
flake8-formatter-junit-xml = "^0.0.6"
[tool.poetry.scripts]
cdbot = "cdbot:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"