Skip to content

Commit

Permalink
Fixes #4 Enable package to install deps automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
bhaveshAn committed Mar 25, 2018
1 parent ccc225b commit 68d954d
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 68d954d

Please sign in to comment.