[Python-modules-commits] [python-cachecontrol] 01/04: Import python-cachecontrol_0.11.4.orig.tar.gz

Barry Warsaw barry at moszumanska.debian.org
Mon May 18 18:08:41 UTC 2015


This is an automated email from the git hooks/post-receive script.

barry pushed a commit to branch master
in repository python-cachecontrol.

commit 9ea7cfb1b474839c21271e8d8a8b92bcdfecd3b8
Author: Barry Warsaw <barry at python.org>
Date:   Mon May 18 12:26:25 2015 -0400

    Import python-cachecontrol_0.11.4.orig.tar.gz
---
 CacheControl.egg-info/PKG-INFO    |  2 +-
 CacheControl.egg-info/SOURCES.txt |  2 ++
 LICENSE.txt                       | 15 +++++++++++++++
 MANIFEST.in                       |  1 +
 PKG-INFO                          |  2 +-
 cachecontrol/__init__.py          |  2 +-
 setup.py                          |  5 ++++-
 7 files changed, 25 insertions(+), 4 deletions(-)

diff --git a/CacheControl.egg-info/PKG-INFO b/CacheControl.egg-info/PKG-INFO
index 2ee2bc4..a38bcc0 100644
--- a/CacheControl.egg-info/PKG-INFO
+++ b/CacheControl.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: CacheControl
-Version: 0.11.3
+Version: 0.11.4
 Summary: httplib2 caching for requests
 Home-page: https://github.com/ionrock/cachecontrol
 Author: Eric Larson
diff --git a/CacheControl.egg-info/SOURCES.txt b/CacheControl.egg-info/SOURCES.txt
index 61a3577..04714c4 100644
--- a/CacheControl.egg-info/SOURCES.txt
+++ b/CacheControl.egg-info/SOURCES.txt
@@ -1,3 +1,5 @@
+LICENSE.txt
+MANIFEST.in
 README.rst
 setup.cfg
 setup.py
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..1ed31ac
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,15 @@
+Copyright 2015 Eric Larson
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+implied.
+
+See the License for the specific language governing permissions and
+limitations under the License.
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..1e0fc79
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1 @@
+include LICENSE.txt
\ No newline at end of file
diff --git a/PKG-INFO b/PKG-INFO
index 2ee2bc4..a38bcc0 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: CacheControl
-Version: 0.11.3
+Version: 0.11.4
 Summary: httplib2 caching for requests
 Home-page: https://github.com/ionrock/cachecontrol
 Author: Eric Larson
diff --git a/cachecontrol/__init__.py b/cachecontrol/__init__.py
index 4cb8ff5..5e1f659 100644
--- a/cachecontrol/__init__.py
+++ b/cachecontrol/__init__.py
@@ -4,7 +4,7 @@ Make it easy to import from cachecontrol without long namespaces.
 """
 __author__ = 'Eric Larson'
 __email__ = 'eric at ionrock.org'
-__version__ = '0.11.3'
+__version__ = '0.11.4'
 
 from .wrapper import CacheControl
 from .adapter import CacheControlAdapter
diff --git a/setup.py b/setup.py
index 3b0ffdb..7feb020 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ import setuptools
 
 long_description = open('README.rst').read()
 
-VERSION = '0.11.3'
+VERSION = '0.11.4'
 
 setup_params = dict(
     name='CacheControl',
@@ -12,6 +12,9 @@ setup_params = dict(
     url='https://github.com/ionrock/cachecontrol',
     keywords='requests http caching web',
     packages=setuptools.find_packages(),
+    package_data={'': ['LICENSE.txt']},
+    package_dir={'cachecontrol': 'cachecontrol'},
+    include_package_data=True,
     description='httplib2 caching for requests',
     long_description=long_description,
     install_requires=[

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-cachecontrol.git



More information about the Python-modules-commits mailing list