Skip to content

Commit

Permalink
Merge branch 'release/0.3.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
fedelemantuano committed Nov 6, 2016
2 parents 3a150ad + 927f5bf commit 5379dec
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include requirements.txt
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ or use ``pip``:
pip install mail-parser

Usage in a project
-----
-------------------

Import ``MailParser`` class:

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
from setuptools import setup


VERSION = (0, 3, 0)
VERSION = (0, 3, 7)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))

long_description = open(join(dirname(__file__), 'README')).read().strip()
requires = open("requirements.txt").read().splitlines()
requires = open(join(dirname(__file__),
'requirements.txt')).read().splitlines()


setup(
Expand Down

0 comments on commit 5379dec

Please sign in to comment.