diff options
Diffstat (limited to 'Pipfile')
| -rw-r--r-- | Pipfile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile new file mode 100644 index 000000000..b684de024 --- /dev/null +++ b/Pipfile @@ -0,0 +1,29 @@ +[[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" + +[dev-packages] +"flake8" = "*" +"flake8-bugbear" = "*" +"flake8-bandit" = "*" +"flake8-import-order" = "*" +"flake8-tidy-imports" = "*" +"flake8-todo" = "*" +"flake8-string-format" = "*" +safety = "*" +dodgy = "*" +requests = "*" + +[requires] +python_version = "3.6" |