Manifest update

This commit is contained in:
Manuel Ebert 2014-07-27 12:43:26 +09:00
parent 2150b5b3e7
commit bf49f31d22
4 changed files with 7 additions and 3 deletions

View file

@ -4,6 +4,7 @@ Changelog
### 1.9 (July 21, 2014) ### 1.9 (July 21, 2014)
* __1.9.2__ Fixed: Tag search ignores email-addresses (thanks to @mjhoffman65)
* __1.9.1__ Fixed: Dates in the future can be parsed as well. * __1.9.1__ Fixed: Dates in the future can be parsed as well.
* __1.9.0__ Improved: Greatly improved date parsing. Also added an `-on` option for filtering * __1.9.0__ Improved: Greatly improved date parsing. Also added an `-on` option for filtering

3
MANIFEST.in Normal file
View file

@ -0,0 +1,3 @@
include LICENSE
include README.md
include CHANGELOG.md

View file

@ -8,7 +8,7 @@ jrnl is a simple journal application for your command line.
from __future__ import absolute_import from __future__ import absolute_import
__title__ = 'jrnl' __title__ = 'jrnl'
__version__ = '1.9.1' __version__ = '1.9.2'
__author__ = 'Manuel Ebert' __author__ = 'Manuel Ebert'
__license__ = 'MIT License' __license__ = 'MIT License'
__copyright__ = 'Copyright 2013 - 2014 Manuel Ebert' __copyright__ = 'Copyright 2013 - 2014 Manuel Ebert'

View file

@ -114,7 +114,7 @@ setup(
# metadata for upload to PyPI # metadata for upload to PyPI
author = "Manuel Ebert", author = "Manuel Ebert",
author_email = "manuel@1450.me", author_email = "manuel@1450.me",
license = "MIT License", license="LICENSE",
keywords = "journal todo todo.txt jrnl".split(), keywords = "journal todo todo.txt jrnl".split(),
url = "http://maebert.github.io/jrnl", url = "http://www.jrnl.sh",
) )