From 2be5382f726f9f90143485e4aca7b7fe77358ab0 Mon Sep 17 00:00:00 2001 From: Maksym Kholiavchenko Date: Wed, 16 Oct 2019 14:11:01 +0300 Subject: [PATCH] Add installation fix --- MANIFEST.in | 3 +++ setup.py | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..3af5522 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include LICENSE +include requirements.txt +recursive-include dependencies * diff --git a/setup.py b/setup.py index eea1b96..4262dee 100644 --- a/setup.py +++ b/setup.py @@ -22,12 +22,12 @@ def load_requirements(file_name): setup( name="musco-tf", - version="1.0.0", + version="1.0.1", description="MUSCO: Multi-Stage COmpression of neural networks", author="Julia Gusak, Maksym Kholiavchenko, Evgeny Ponomarev, Larisa Markeeva, Andrzej Cichocki, Ivan Oseledets", author_email="m.kholyavchenko@innopolis.ru", url="https://github.com/musco-ai/musco-tf", - download_url="https://github.com/musco-ai/musco-tf/archive/1.0.0.tar.gz", + download_url="https://github.com/musco-ai/musco-tf/archive/1.0.1.tar.gz", license="Apache-2.0", packages=find_packages(), cmdclass={"install": InstallLocalPackage},