aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2015-10-18 23:34:27 -0400
committerRapptz <[email protected]>2015-10-18 23:34:27 -0400
commit7ff2cd008fce806fb575ce190c7bfb1f900c42cd (patch)
tree1629cbd796a5379102fc9787d8120619dc7b418e /setup.py
parentAdd Client.create_role to create a server-wide role. (diff)
downloaddiscord.py-7ff2cd008fce806fb575ce190c7bfb1f900c42cd.tar.xz
discord.py-7ff2cd008fce806fb575ce190c7bfb1f900c42cd.zip
Properly set requirements of ws4py and requests.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index a76f466f..e687b9d2 100644
--- a/setup.py
+++ b/setup.py
@@ -1,10 +1,9 @@
from setuptools import setup
import re
-requirements = [
- 'ws4py',
- 'requests'
-]
+requirements = []
+with open('requirements.txt') as f:
+ requirements = f.read().splitlines()
version = ''
with open('discord/__init__.py') as f: