From 68d954d750f7caec1be02acaf6bcd0e7939aea69 Mon Sep 17 00:00:00 2001 From: bhaveshAn Date: Sun, 25 Mar 2018 18:46:12 +0530 Subject: [PATCH] Fixes #4 Enable package to install deps automatically --- MANIFEST.in | 1 + setup.py | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..f9bd145 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include requirements.txt diff --git a/setup.py b/setup.py index b1d653e..dc3e00b 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,8 @@ from setuptools import setup +with open('requirements.txt') as f: + requirements = f.read().splitlines() + setup( author='Konstiantyn Snihyr', author_email='konstantin.s@cliqz.com', @@ -7,12 +10,15 @@ 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',