From b73d081f555c1e28095c0cf650e947f49abe60ce Mon Sep 17 00:00:00 2001 From: Manuel Ebert Date: Thu, 24 May 2012 13:30:37 +0200 Subject: [PATCH] Added an entry point so we don't have to make an bash alias anymore. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 7ba19896..31818d06 100644 --- a/setup.py +++ b/setup.py @@ -61,12 +61,12 @@ setup( 'encryption': ["pycrypto"], 'highlight': ["cling"] }, + long_description=__doc__, entry_points={ 'console_scripts': [ 'jrnl = jrnl:cli', ], }, - long_description=__doc__, classifiers=[ 'Development Status :: 3 - Alpha', 'Environment :: Console', @@ -84,5 +84,5 @@ setup( author_email = "manuel.ebert@upf.edu", license = "MIT License", keywords = "journal todo todo.txt jrnl".split(), - url = "http://maebert.github.com/jrnl", # project home page, if any + url = "http://maebert.github.com/jrnl", )