diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f478d9b..f6d92863 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ Changelog ========= -### 1.0.2 (April 17, 2013) +### 1.0.3 (April 17, 2013) * [Improved] Installs pycrypto by default * [Improved] Removed clint in favour of colorama diff --git a/jrnl/__init__.py b/jrnl/__init__.py index 9ef435f4..6716b4ea 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.0.2' +__version__ = '1.0.3' __author__ = 'Manuel Ebert' __license__ = 'MIT License' __copyright__ = 'Copyright 2013 Manuel Ebert' diff --git a/jrnl/install.py b/jrnl/install.py index f0d7d48b..e0b1d068 100644 --- a/jrnl/install.py +++ b/jrnl/install.py @@ -77,7 +77,7 @@ def install_jrnl(config_path='~/.jrnl_config'): print("PyCrypto not found. To encrypt your journal, install the PyCrypto package from http://www.pycrypto.org and run 'jrnl --encrypt'. For now, your journal will be stored in plain text.") # Use highlighting: - if module_exists("colorama"): + if not module_exists("colorama"): print("colorama not found. To turn on highlighting, install colorama and set highlight to true in your .jrnl_conf.") default_config['highlight'] = False diff --git a/requirements.txt b/requirements.txt index 9b78f344..7b7648ac 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ -clint >= 0.3.1 -parsedatetime == 1.1.2 +parsedatetime >= 1.1.2 +colorama >= 0.2.5 +pycrypto >= 2.6 diff --git a/setup.py b/setup.py index d325dfc4..bc94ae85 100644 --- a/setup.py +++ b/setup.py @@ -64,10 +64,10 @@ setup( description = "A command line journal application that stores your journal in a plain text file", packages = ['jrnl'], install_requires = [ - "parsedatetime >= 1.1.2", - "colorama >= 0.2.5", - "pycrypto >= 2.6" - ] + ["pyreadline >= 2.0"] if "win" in sys.platform else [], + "parsedatetime>=1.1.2", + "colorama>=0.2.5", + "pycrypto>=2.6" + ] + ["pyreadline>=2.0"] if "win" in sys.platform else [], long_description=__doc__, entry_points={ 'console_scripts': [ @@ -75,7 +75,7 @@ setup( ], }, classifiers=[ - 'Development Status :: 3 - Alpha', + 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: End Users/Desktop', 'License :: OSI Approved :: MIT License',