diff --git a/setup.py b/setup.py index 5b885326..526dc7d6 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ If you just call jrnl you will be prompted to compose your entry - but you can a Links ````` -* `website & documentation `_ +* `website & documentation `_ * `GitHub Repo `_ """ @@ -45,7 +45,7 @@ import os import sys import re try: - import readline + import readline # NOQA readline_available = True except ImportError: readline_available = False @@ -80,16 +80,14 @@ setup( description="A command line journal application that stores your journal in a plain text file", packages=['jrnl'], install_requires=[ - "pyxdg>=0.19", "parsedatetime>=1.2", "pytz>=2013b", "six>=1.7.4", "cryptography==0.8.1", "tzlocal>=1.1", - "PyYAML>=3.11", + "pyyaml>=3.11", "keyring>=3.3", "passlib>=1.6.2", - "pyyaml>=3.09", "pyxdg>=0.25", ] + [p for p, cond in conditional_dependencies.items() if cond], long_description=__doc__,