mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 08:38:32 +02:00
Makes pycrypto optional, closes #23
This commit is contained in:
parent
132b08ccc7
commit
041549a5fe
1 changed files with 6 additions and 2 deletions
8
setup.py
8
setup.py
|
@ -42,12 +42,16 @@ base_dir = os.path.dirname(os.path.abspath(__file__))
|
|||
|
||||
setup(
|
||||
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",
|
||||
|
||||
packages = find_packages(),
|
||||
scripts = ['jrnl.py'],
|
||||
install_requires = ["parsedatetime", "pycrypto", "simplejson"],
|
||||
install_requires = ["parsedatetime", "simplejson"],
|
||||
extras_require = {
|
||||
'encryption': ["pycrypto"],
|
||||
'highlight': ["cling"]
|
||||
},
|
||||
package_data={'': ['*.md']},
|
||||
long_description=__doc__,
|
||||
classifiers=[
|
||||
|
|
Loading…
Add table
Reference in a new issue