forked from modmail-dev/Modmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (36 loc) · 814 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
38
[tool.black]
line-length = "110"
target-version = ['py39']
include = '\.pyi?$'
extend-exclude = '''
(
/(
\.eggs
| \.git
| \.venv
| venv
| venv2
| _build
| build
| dist
| plugins
| temp
)/
)
'''
[tool.poetry]
name = 'Modmail'
version = '3.10.3'
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 <[email protected]>',
'4jr <[email protected]>',
'Taki <[email protected]>'
]
readme = 'README.md'
repository = 'https://github.com/kyb3r/modmail'
homepage = 'https://github.com/kyb3r/modmail'
keywords = ['discord', 'modmail']
[tool.pylint.format]
max-line-length = "110"