aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar sco1 <[email protected]>2018-10-03 17:41:38 -0400
committerGravatar sco1 <[email protected]>2018-10-03 17:41:38 -0400
commit9ff3249e71913f10f6041965456f94ac6540d975 (patch)
tree4d6f83a30aab0e6b8c9b4245713ca653b52fa37d /Pipfile
parentUpdate README.md (diff)
Initialize Pipfile & Pipfile.lock
Update Contributor guide to link to Wiki Pipenv guide
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile21
1 files changed, 21 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile
new file mode 100644
index 00000000..90f6f45e
--- /dev/null
+++ b/Pipfile
@@ -0,0 +1,21 @@
+[[source]]
+url = "https://pypi.org/simple"
+verify_ssl = true
+name = "pypi"
+
+[packages]
+"discord.py" = {ref = "rewrite", git = "https://github.com/Rapptz/discord.py"}
+
+[dev-packages]
+"flake8" = "*"
+"flake8-bugbear" = "*"
+"flake8-import-order" = "*"
+"flake8-tidy-imports" = "*"
+"flake8-todo" = "*"
+"flake8-string-format" = "*"
+
+[requires]
+python_version = "3.7"
+
+[scripts]
+start = "python -m bot" \ No newline at end of file