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 6251c83
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import os
from setuptools import setup
from setuptools import setup, find_packages

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

def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
Expand All @@ -12,6 +16,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 6251c83

Please sign in to comment.