mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 08:38:32 +02:00
Makes PyCrypto an automatic install
This commit is contained in:
parent
e0f7d235b1
commit
ba6f7a43ba
3 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||||
|
|
||||||
|
|
|
@ -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.
|
||||||
|
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -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={
|
||||||
|
|
Loading…
Add table
Reference in a new issue