aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
blob: f1d87b3df66f0e38b19a9daf4c71727f5003267a (plain) (blame)
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]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"

[packages]
discord = {file = "https://github.com/Rapptz/discord.py/archive/rewrite.zip", egg = "discord.py[voice]"}
dulwich = "*"
multidict = "*"
sympy = "*"
aiodns = "*"
logmatic-python = "*"
aiohttp = "<2.3.0,>=2.0.0"
websockets = ">=4.0,<5.0"
pyyaml = "*"
yarl = "==1.1.1"
fuzzywuzzy = "*"
python-levenshtein = "*"
pillow = "*"
aio-pika = "*"

[dev-packages]
"flake8" = "*"
"flake8-bugbear" = "*"
"flake8-import-order" = "*"
"flake8-tidy-imports" = "*"
"flake8-todo" = "*"
"flake8-string-format" = "*"
safety = "*"
dodgy = "*"
requests = "*"

[requires]
python_version = "3.6"

[scripts]
start = "python -m bot"
build = "docker build -t pythondiscord/bot:latest -f docker/Dockerfile ."
push = "docker push pythondiscord/bot:latest"
buildbase = "docker build -t pythondiscord/bot-base:latest -f docker/Dockerfile.base ."
pushbase = "docker push pythondiscord/bot-base:latest"