diff options
| author | Rapptz <[email protected]> | 2015-08-23 23:37:41 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2015-08-23 23:37:56 -0400 |
| commit | 35084cf98a1d861361c17009df3db30aabf1244a (patch) | |
| tree | 5ee14e9d882070b53f22d29eb7efe082a180a412 /setup.py | |
| parent | Fix setuputils script (diff) | |
| download | discord.py-35084cf98a1d861361c17009df3db30aabf1244a.tar.xz discord.py-35084cf98a1d861361c17009df3db30aabf1244a.zip | |
Add support for channel creation events.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,9 +1,10 @@ from setuptools import setup import re -requirements = '' -with open('requirements.txt') as f: - requirements = f.read().splitlines() +requirements = [ + 'ws4py', + 'requests' +] version = '' with open('discord/__init__.py') as f: |