Fixes requirements and setup

This commit is contained in:
Manuel Ebert 2012-12-14 15:18:30 -08:00
parent 8418c2f696
commit 918a46a2fa
3 changed files with 5 additions and 3 deletions

View file

@ -2,6 +2,6 @@ language: python
python: python:
- "2.7" - "2.7"
- "3.2" - "3.2"
install: "pip install cling parsedatetime simplejson --use-mirrors" install: "pip install -r requirements.txt --use-mirrors"
# command to run tests # command to run tests
script: nosetests script: nosetests

2
requirements.txt Normal file
View file

@ -0,0 +1,2 @@
clint >= 0.3.1
parsedatetime >= 0.8.7

View file

@ -56,10 +56,10 @@ setup(
version = "0.3.0", version = "0.3.0",
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'],
install_requires = ["parsedatetime", "simplejson"], install_requires = ["parsedatetime"],
extras_require = { extras_require = {
'encryption': ["pycrypto"], 'encryption': ["pycrypto"],
'highlight': ["cling"] 'highlight': ["clint"]
}, },
long_description=__doc__, long_description=__doc__,
entry_points={ entry_points={