Browse Source

Properly set requirements of ws4py and requests.

pull/24/head
Rapptz 10 years ago
parent
commit
7ff2cd008f
  1. 1
      MANIFEST.in
  2. 4
      requirements.txt
  3. 7
      setup.py

1
MANIFEST.in

@ -1,2 +1,3 @@
include README.md include README.md
include LICENSE include LICENSE
include requirements.txt

4
requirements.txt

@ -1,2 +1,2 @@
ws4py ws4py>=0.3.4
requests requests>=2.7.0

7
setup.py

@ -1,10 +1,9 @@
from setuptools import setup from setuptools import setup
import re import re
requirements = [ requirements = []
'ws4py', with open('requirements.txt') as f:
'requests' requirements = f.read().splitlines()
]
version = '' version = ''
with open('discord/__init__.py') as f: with open('discord/__init__.py') as f:

Loading…
Cancel
Save