mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
Fixes install routine
This commit is contained in:
parent
9b0bee0637
commit
41706c3cb5
5 changed files with 11 additions and 10 deletions
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
clint >= 0.3.1
|
||||
parsedatetime == 1.1.2
|
||||
parsedatetime >= 1.1.2
|
||||
colorama >= 0.2.5
|
||||
pycrypto >= 2.6
|
||||
|
|
2
setup.py
2
setup.py
|
@ -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',
|
||||
|
|
Loading…
Add table
Reference in a new issue