Skip to content

Commit

Permalink
Fix issue YavorPaunov#1
Browse files Browse the repository at this point in the history
  • Loading branch information
charleswhchan committed Jun 19, 2017
1 parent 3620b7d commit b8e3944
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import os
from setuptools import setup
from setuptools import setup, find_packages

def requirements(filename='requirements.txt'):
with open(filename) as f:
return requirements = f.read().splitlines()

def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
Expand All @@ -12,6 +15,7 @@ def read(fname):
description='A deepstream.io client.',
license='MIT',
url='https://www.github.com/YavorPaunov/deepstreampy',
packages=['deepstreampy', 'tests', 'features'],
packages=find_packages(),
install_requires=requirements(),
long_description=read('README.md'),
test_suite='tests')

0 comments on commit b8e3944

Please sign in to comment.