mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
Fixes requirements and setup
This commit is contained in:
parent
2a5a7fb478
commit
42f2371c5d
3 changed files with 5 additions and 3 deletions
|
@ -2,6 +2,6 @@ language: python
|
|||
python:
|
||||
- "2.7"
|
||||
- "3.2"
|
||||
install: "pip install cling parsedatetime simplejson --use-mirrors"
|
||||
install: "pip install -r requirements.txt --use-mirrors"
|
||||
# command to run tests
|
||||
script: nosetests
|
||||
|
|
2
requirements.txt
Normal file
2
requirements.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
clint >= 0.3.1
|
||||
parsedatetime >= 0.8.7
|
4
setup.py
4
setup.py
|
@ -56,10 +56,10 @@ setup(
|
|||
version = "0.3.0",
|
||||
description = "A command line journal application that stores your journal in a plain text file",
|
||||
packages = ['jrnl'],
|
||||
install_requires = ["parsedatetime", "simplejson"],
|
||||
install_requires = ["parsedatetime"],
|
||||
extras_require = {
|
||||
'encryption': ["pycrypto"],
|
||||
'highlight': ["cling"]
|
||||
'highlight': ["clint"]
|
||||
},
|
||||
long_description=__doc__,
|
||||
entry_points={
|
||||
|
|
Loading…
Add table
Reference in a new issue