From f7fe87c5d48bb9cb5ba246c8641396f43990fbf0 Mon Sep 17 00:00:00 2001 From: Christophe Date: Wed, 5 Jul 2017 15:34:51 +0000 Subject: [PATCH 1/2] added manifest file --- MANIFEST.in | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..c1a7121 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include LICENSE +include README.md From ae276fba0a1c60efde89c8fd8f4bcdc198a4317a Mon Sep 17 00:00:00 2001 From: Christophe Date: Wed, 5 Jul 2017 15:41:04 +0000 Subject: [PATCH 2/2] increased version number --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 606b11d..13a3a4b 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ def readme(): setup( name='webscrapetools', - version='0.4', + version='0.4.0', description='A basic but fast, persistent and threadsafe caching system', long_description=readme(), url='https://github.com/chris-ch/webscrapetools', @@ -16,7 +16,7 @@ def readme(): packages=['webscrapetools'], package_dir={'webscrapetools': 'src/webscrapetools'}, license='Apache', - download_url='https://github.com/chris-ch/webscrapetools/webscrapetools/archive/0.4.tar.gz', + download_url='https://github.com/chris-ch/webscrapetools/webscrapetools/archive/0.4.0.tar.gz', install_requires=[ 'requests', ],