Makes pycrypto optional, closes #23

This commit is contained in:
Manuel Ebert 2012-05-21 12:20:24 +02:00
parent 4ec53e1b69
commit 44333a5330

View file

@ -42,12 +42,16 @@ base_dir = os.path.dirname(os.path.abspath(__file__))
setup( setup(
name = "jrnl", name = "jrnl",
version = "0.2.3", version = "0.2.4",
description = "A command line journal application that stores your journal in a plain text file", description = "A command line journal application that stores your journal in a plain text file",
packages = find_packages(), packages = find_packages(),
scripts = ['jrnl.py'], scripts = ['jrnl.py'],
install_requires = ["parsedatetime", "pycrypto", "simplejson"], install_requires = ["parsedatetime", "simplejson"],
extras_require = {
'encryption': ["pycrypto"],
'highlight': ["cling"]
},
package_data={'': ['*.md']}, package_data={'': ['*.md']},
long_description=__doc__, long_description=__doc__,
classifiers=[ classifiers=[