summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Ebert <manuel@1450.me>2013-07-18 09:02:37 +0200
committerManuel Ebert <manuel@1450.me>2013-07-18 09:02:37 +0200
commit20740a8f81d09327185e6d30f2e0166f2acc4452 (patch)
tree32703197534f659ec021dbbe7c9744d5e3468926
parente8b2a17772e6710f1ccba2a02eabd54d9803d89d (diff)
Adds slugify to setup.py1.3.1
-rw-r--r--jrnl/__init__.py2
-rw-r--r--setup.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/jrnl/__init__.py b/jrnl/__init__.py
index 14ca1bfa..7ca6b98e 100644
--- a/jrnl/__init__.py
+++ b/jrnl/__init__.py
@@ -7,7 +7,7 @@ jrnl is a simple journal application for your command line.
"""
__title__ = 'jrnl'
-__version__ = '1.3.0'
+__version__ = '1.3.1'
__author__ = 'Manuel Ebert'
__license__ = 'MIT License'
__copyright__ = 'Copyright 2013 Manuel Ebert'
diff --git a/setup.py b/setup.py
index 0bb14c25..c6a53760 100644
--- a/setup.py
+++ b/setup.py
@@ -72,6 +72,7 @@ setup(
"parsedatetime>=1.1.2",
"pytz>=2013b",
"tzlocal==1.0",
+ "slugify>=0.0.1",
"colorama>=0.2.5"
] + [p for p, cond in conditional_dependencies.items() if cond],
extras_require = {