diff --git a/setup.py b/setup.py index 2f4455e..8b21d2a 100644 --- a/setup.py +++ b/setup.py @@ -1,14 +1,14 @@ import os import sys -from setuptools import setup +from setuptools import setup, find_packages from setuptools.command.install import install with open("README.md", "r") as fh: long_description = fh.read() # Package version -VERSION = "0.1.0" +VERSION = "0.1.1" class VerifyVersionCommand(install): """Custom command to verify that the git tag matches our version""" @@ -32,6 +32,7 @@ def run(self): description="Prepare your Notebooks to be pushed to GitHub", long_description=long_description, long_description_content_type="text/markdown", + packages=find_packages(), include_package_data=True, cmdclass={ 'verify': VerifyVersionCommand,