Added an entry point so we don't have to make an bash alias anymore.

This commit is contained in:
Manuel Ebert 2012-05-24 13:30:37 +02:00
parent 4b354bd40e
commit 32b691f938

View file

@ -61,12 +61,12 @@ setup(
'encryption': ["pycrypto"], 'encryption': ["pycrypto"],
'highlight': ["cling"] 'highlight': ["cling"]
}, },
long_description=__doc__,
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [
'jrnl = jrnl:cli', 'jrnl = jrnl:cli',
], ],
}, },
long_description=__doc__,
classifiers=[ classifiers=[
'Development Status :: 3 - Alpha', 'Development Status :: 3 - Alpha',
'Environment :: Console', 'Environment :: Console',
@ -84,5 +84,5 @@ setup(
author_email = "manuel.ebert@upf.edu", author_email = "manuel.ebert@upf.edu",
license = "MIT License", license = "MIT License",
keywords = "journal todo todo.txt jrnl".split(), keywords = "journal todo todo.txt jrnl".split(),
url = "http://maebert.github.com/jrnl", # project home page, if any url = "http://maebert.github.com/jrnl",
) )