Makes PyCrypto an automatic install

This commit is contained in:
Manuel Ebert 2013-04-17 10:19:25 +02:00
parent e0f7d235b1
commit ba6f7a43ba
3 changed files with 4 additions and 4 deletions

View file

@ -3,6 +3,7 @@ Changelog
### 1.0.2 (April 17, 2013) ### 1.0.2 (April 17, 2013)
* [Improved] Installs pycrypto by default
* [Improved] Removed clint in favour of colorama * [Improved] Removed clint in favour of colorama
### 1.0.1 (March 12, 2013) ### 1.0.1 (March 12, 2013)

View file

@ -222,4 +222,5 @@ Known Issues
------------ ------------
- The Windows shell prior to Windows 7 has issues with unicode encoding. If you want to use non-ascii characters, change the codepage with `chcp 1252` before using `jrnl` (Thanks to Yves Pouplard for solving this!) - The Windows shell prior to Windows 7 has issues with unicode encoding. If you want to use non-ascii characters, change the codepage with `chcp 1252` before using `jrnl` (Thanks to Yves Pouplard for solving this!)
- _jrnl_ relies on the `Crypto` package to encrypt journals, which has some known problems with installing within virtual environments. - _jrnl_ relies on the `PyCrypto` package to encrypt journals, which has some known problems with installing within virtual environments. If you want to install __jrnl__ within a virtual environment, you need to [install PyCyrypto manually](https://www.dlitz.net/software/pycrypto/) first.

View file

@ -56,12 +56,10 @@ setup(
version = "1.0.1", version = "1.0.1",
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 = ['jrnl'], packages = ['jrnl'],
extras_require = {
'encryption': ["pycrypto"],
},
install_requires = [ install_requires = [
"parsedatetime >= 1.1.2", "parsedatetime >= 1.1.2",
"colorama >= 0.2.5", "colorama >= 0.2.5",
"pycrypto >= 2.6"
], ],
long_description=__doc__, long_description=__doc__,
entry_points={ entry_points={