forked from Erisa/modmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (54 loc) · 1.28 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
57
58
[tool.black]
line-length = 99
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.venv
| venv
| venv2
| _build
| build
| dist
| plugins
| temp
)/
)
'''
[tool.poetry]
name = 'Modmail'
version = '3.9.4'
description = "Modmail is similar to Reddit's Modmail, both in functionality and purpose. It serves as a shared inbox for server staff to communicate with their users in a seamless way."
license = 'AGPL-3.0-only'
authors = [
'kyb3r <noemail@example.com>',
'4jr <noemail@example.com>',
'Taki <noemail@example.com>'
]
readme = 'README.md'
repository = 'https://github.com/kyb3r/modmail'
homepage = 'https://github.com/kyb3r/modmail'
keywords = ['discord', 'modmail']
[tool.poetry.dependencies]
python = "^3.7"
"discord.py" = "discord.py==1.6.0"
uvloop = {version = ">=0.12.0", markers = "sys_platform != 'win32'"}
python-dotenv = ">=0.10.3"
parsedatetime = "^2.6"
dnspython = "^1.16"
isodate = "^0.6.0"
natural = "^0.2.0"
motor = {version = "^2.1", optional = true}
emoji = "^0.5.4"
python-dateutil = "^2.8"
colorama = "^0.4.3"
aiohttp = ">=3.6.0,<3.7.0"
[tool.poetry.dev-dependencies]
black = {version = "=19.10b0", allow-prereleases = true}
pylint = "^2.4"
bandit = "^1.6"
[tool.poetry.extras]
mongodb = ["motor"]