-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
36 lines (31 loc) · 712 Bytes
/
Pipfile
File metadata and controls
36 lines (31 loc) · 712 Bytes
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[packages]
"discord.py" = "~=1.5.1"
asyncpg = "~=0.21.0"
pillow = "~=8.0.1"
loguru = "~=0.5.3"
[dev-packages]
flake8 = "~=3.8.4"
flake8-annotations = "~=2.4.1"
flake8-bugbear = "~=20.1.4"
flake8-docstrings = "~=1.5.0"
flake8-import-order = "~=0.18.1"
flake8-string-format = "~=0.3.0"
flake8-tidy-imports = "~=4.1.0"
flake8-todo = "~=0.7"
black = "~=20.8b1"
pep8-naming = "~=0.11.1"
pre-commit = "~=2.7.1"
[requires]
python_version = "3.8.6"
[scripts]
start = "python -m bot"
lint = "pre-commit run --all-files"
precommit = "pre-commit install"
black = "black --check ."
flake8 = "python -m flake8"
[pipenv]
allow_prereleases = true