-
Notifications
You must be signed in to change notification settings - Fork 24
/
Pipfile
41 lines (37 loc) · 857 Bytes
/
Pipfile
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[packages]
python-dotenv = "~=0.19.2"
opencv-python-headless = "~=4.5.5.62"
scikit-image = "~=0.19.1"
aiofiles = "~=0.8.0"
pyyaml = "~=6.0"
pillow = "~=9.0.1"
numpy = "~=1.22.2"
python-dateutil = "~=2.8.2"
arrow = "~=1.2.2"
aiodns = "~=3.0.0"
PyJWT = "~=2.3.0"
matplotlib = "~=3.6.3"
"discord.py" = "~=2.1.0"
pydantic = "~=1.10.4"
feedparser = "*"
[dev-packages]
flake8 = "~=4.0.1"
flake8-annotations = "~=2.7.0"
flake8-bugbear = "~=22.1.11"
flake8-docstrings = "~=1.6.0"
flake8-import-order = "~=0.18.1"
flake8-string-format = "~=0.3.0"
flake8-tidy-imports = "~=4.6.0"
flake8-todo = "~=0.7"
pep8-naming = "~=0.12.1"
pre-commit = "~=2.17.0"
[requires]
python_version = "3.9"
[scripts]
start = "python -m bot"
lint = "pre-commit run --all-files"
precommit = "pre-commit install"