forked from SevenBot-dev/SevenBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.38 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
59
60
61
62
63
64
[tool.poetry]
name = "sevenbot"
version = "0.1.0"
description = "A multifunctional bot for discord"
authors = ["sevenc-nanashi <[email protected]>"]
license = "GPLv3"
[tool.poetry.dependencies]
python = "^3.9"
async-google-trans-new = "~=1.4.2"
aiohttp = "^3.7.4"
authlib = "~=0.15.5"
beautifulsoup4 = "~=4.9.3"
discord-emoji = "~=1.3.1"
discord-ext-levenshtein = "~=0.3.0"
dnspython = "~=2.1.0"
dpy-components = "~=0.4.2"
dpy-peper = "~=1.0.1"
dpy-syntaxer = "~=1.1.0"
google-api-python-client = "~=2.9.0"
httpx = "~=0.18.2"
jishaku = "~=2.0.0"
lxml = "~=4.6.5"
motor = "~=2.4.0"
pillow = "~=9.0.0"
psutil = "~=5.8.0"
py = "~=1.10.0"
pylint = "~=2.8.3"
pynacl = "~=1.4.0"
pyre2 = "~=0.3.6"
# py-cord = { git = "https://github.com/pycord-development/pycord" }
py-cord = "~=2.1.1"
sembed = "~=1.1.2"
sentry-sdk = "~=1.5.0"
texttable = "~=1.6.4"
topggpy = "~=1.1.0"
websockets = "~=10.1"
xmltodict = "~=0.12.0"
youtube-dl = "~=2021.6.6"
[tool.poetry.dev-dependencies]
pip-chill = "~=1.0.1"
flake8 = "~=4.0.1"
black = "~=21.11b1"
pyproject-flake8 = "^0.0.1-alpha.2"
isort = "^5.10.1"
watchdog = "^2.1.6"
[tool.black]
line-length = 120
extend-exclude = "__gi_*"
[tool.flake8]
max-line-length = 120
extend-ignore = "E203,W503"
extend-exclude = ".venv,__gi_*"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools", "wheel"]
build-backend = "poetry.core.masonry.api"