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

@ -26,4 +26,5 @@ Patches and Suggestions
- Thomas Goirand
- James Page
- Josh Marshall
- Dougal Matthews
- Dougal Matthews
- Monty Taylor

View File

@ -2,6 +2,10 @@
History
-------
1.3.1 (2014-09-30)
++++++++++++++++++
- Add requirements.txt to MANIFEST.in to fix pip installs
1.3.0 (2014-09-30)
++++++++++++++++++
- 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(
name='retrying',
version='1.3.0',
version='1.3.1',
description='Retrying',
long_description=readme + '\n\n' + history,
author='Ray Holder',