forked from python-discord/bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
46 lines (42 loc) · 1.16 KB
/
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
42
43
44
45
46
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[packages]
discord-py = {git = "https://github.com/Rapptz/discord.py.git",extras = ["voice"],ref = "860d6a9ace8248dfeec18b8b159e7b757d9f56bb",editable = true}
dulwich = "*"
aiodns = "*"
logmatic-python = "*"
aiohttp = "*"
sphinx = "*"
markdownify = "*"
lxml = "*"
pyyaml = "*"
fuzzywuzzy = "*"
pillow = "*"
aio-pika = "*"
python-dateutil = "*"
deepdiff = "*"
requests = "*"
[dev-packages]
"flake8" = ">=3.6"
"flake8-bugbear" = "*"
"flake8-import-order" = "*"
"flake8-tidy-imports" = "*"
"flake8-todo" = "*"
"flake8-string-format" = "*"
safety = "*"
dodgy = "*"
pre-commit = "*"
[requires]
python_version = "3.6"
[scripts]
start = "python -m bot"
lint = "python -m flake8"
precommit = "pre-commit install"
build = "docker build -t pythondiscord/bot:latest -f docker/bot.Dockerfile ."
push = "docker push pythondiscord/bot:latest"
buildbase = "docker build -t pythondiscord/bot-base:latest -f docker/base.Dockerfile ."
pushbase = "docker push pythondiscord/bot-base:latest"
buildci = "docker build -t pythondiscord/bot-ci:latest -f docker/ci.Dockerfile ."
pushci = "docker push pythondiscord/bot-ci:latest"