Add requirements.txt to MANFEST.in

Without this, pip installs of retrying all fail due to requirements.txt
being missing in the tarball but required by setup.py.
This commit is contained in:
Monty Taylor 2014-09-30 19:42:32 -07:00
parent 36a09fa4da
commit 445633f922
4 changed files with 8 additions and 3 deletions

View File

@ -27,3 +27,4 @@ Patches and Suggestions
- James Page - James Page
- Josh Marshall - Josh Marshall
- Dougal Matthews - Dougal Matthews
- Monty Taylor

View File

@ -2,6 +2,10 @@
History History
------- -------
1.3.1 (2014-09-30)
++++++++++++++++++
- Add requirements.txt to MANIFEST.in to fix pip installs
1.3.0 (2014-09-30) 1.3.0 (2014-09-30)
++++++++++++++++++ ++++++++++++++++++
- Add upstream six dependency, remove embedded six functionality - Add upstream six dependency, remove embedded six functionality

View File

@ -1 +1 @@
include README.rst HISTORY.rst AUTHORS.rst LICENSE NOTICE include README.rst HISTORY.rst AUTHORS.rst LICENSE NOTICE requirements.txt

View File

@ -40,7 +40,7 @@ with open('requirements.txt') as file_requirements:
settings.update( settings.update(
name='retrying', name='retrying',
version='1.3.0', version='1.3.1',
description='Retrying', description='Retrying',
long_description=readme + '\n\n' + history, long_description=readme + '\n\n' + history,
author='Ray Holder', author='Ray Holder',