Skip to content

Commit

Permalink
Merge pull request #5 from bhaveshAn/requirements
Browse files Browse the repository at this point in the history
Fixes #4 Enable package to install deps automatically
  • Loading branch information
sriharshacliqz authored Apr 17, 2018
2 parents 200adc4 + 68d954d commit 740d763
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include requirements.txt
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
from setuptools import setup

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

setup(
author='Konstiantyn Snihyr',
author_email='[email protected]',
name='cinepass-pythonclient',
version='0.2',
provides=['cinepass'],
url='https://github.com/cliqz/cinepass-pythonclient',
license='MIT',
packages=[
'cinepass',
'cinepass.client',
'cinepass.client.v4',
],
zip_safe=False,
include_package_data=True,
install_requires=requirements,
platforms='any',
tests_require=[
'pytest',
Expand Down

0 comments on commit 740d763

Please sign in to comment.