aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar sco1 <[email protected]>2019-01-05 14:35:57 -0500
committerGravatar sco1 <[email protected]>2019-01-05 14:35:57 -0500
commitf21f274edb4f8ff33588aa0cdfad6c8396a59a47 (patch)
treebf74a319d0d12a145e61bb96f8af8e82ae100dfd /Pipfile
parentFix import order (diff)
parentMerge pull request #252 from python-discord/pre-commit (diff)
Merge branch 'master' into invite-filter-dm
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Pipfile b/Pipfile
index 179b317df..3df5ea7c0 100644
--- a/Pipfile
+++ b/Pipfile
@@ -4,7 +4,7 @@ verify_ssl = true
name = "pypi"
[packages]
-discord-py = {git = "https://github.com/Rapptz/discord.py.git", extras = ["voice"], ref = "860d6a9ace8248dfeec18b8b159e7b757d9f56bb", editable = true}
+discord-py = {git = "https://github.com/Rapptz/discord.py.git",extras = ["voice"],ref = "860d6a9ace8248dfeec18b8b159e7b757d9f56bb",editable = true}
dulwich = "*"
aiodns = "*"
logmatic-python = "*"
@@ -29,6 +29,7 @@ requests = "*"
"flake8-string-format" = "*"
safety = "*"
dodgy = "*"
+pre-commit = "*"
[requires]
python_version = "3.6"
@@ -36,12 +37,10 @@ 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"