diff --git a/MANIFEST.in b/MANIFEST.in index 9b1f2b8..99cdcd3 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ -include README.rst +include README.md include LICENSE include requirements*.txt diff --git a/notebook4_constraints.txt b/notebook4_constraints.txt index adf944f..6724455 100644 --- a/notebook4_constraints.txt +++ b/notebook4_constraints.txt @@ -1 +1,2 @@ -notebook<5 \ No newline at end of file +notebook<5 +tornado<5 \ No newline at end of file diff --git a/setup.py b/setup.py index 6f41ed8..44ce5c4 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ long_description = '' if 'upload' in sys.argv or '--long-description' in sys.argv: - with open('README.rst') as f: + with open('README.md') as f: long_description = f.read() @@ -21,13 +21,15 @@ def main(): setup( name='hybridcontents', - version='0.1.0', + version='0.1.1', description="Hybrid Content Manager", long_description=long_description, author="viaduct.ai", author_email="engineering@viaduct.ai", packages=find_packages(include='hybridcontents.*'), license='Apache 2.0', + download_url= + 'https://github.com/viaduct-ai/hybridcontents/archive/v0.1.1.tar.gz', include_package_data=True, zip_safe=True, url="https://github.com/viaduct-ai/hybridcontents",