From 28cf381675f218d8a13f424322f7c3942a9ad136 Mon Sep 17 00:00:00 2001 From: Amit Sharma Date: Mon, 15 Jul 2019 18:12:13 +0530 Subject: [PATCH] commits to publish to pypi --- MANIFEST.in | 3 +++ setup.py | 17 +++++------------ 2 files changed, 8 insertions(+), 12 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000000..419e8c6c56 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include requirements.txt +include LICENSE +recursive-include docs * diff --git a/setup.py b/setup.py index fd561f086f..2049d0c2e3 100644 --- a/setup.py +++ b/setup.py @@ -22,18 +22,13 @@ setup( name='dowhy', - - version='0.1.0', - + version='0.1.2', description='A Python library for causal inference', # Required - + license='MIT', long_description=long_description, - url='https://github.com/microsoft/dowhy', # Optional - + download_url='https://github.com/microsoft/dowhy/archive/v0.1-alpha.tar.gz', author='Amit Sharma, Emre Kiciman', - - classifiers=[ # Optional 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: MIT License', @@ -46,10 +41,8 @@ ], keywords='causality machine-learning causal-inference statistics graphical-model', - packages=find_packages(exclude=['docs', 'tests']), python_requires='>=3.0', - - install_requires=install_requires - + install_requires=install_requires, + include_package_data=True )