Skip to content

Commit

Permalink
File renamed and entry_point fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Sep 6, 2013
1 parent 27c0279 commit 31093c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions funniest/setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

def readme():
with open('README.rst') as f:
with open('README.rst.example') as f:
return f.read()

setup(name='funniest',
Expand All @@ -26,6 +26,6 @@ def readme():
test_suite='nose.collector',
tests_require=['nose', 'nose-cover3'],
entry_points={
'console_scripts': ['funniest-joke=funniest.cmd:main'],
'console_scripts': ['funniest-joke=funniest.command_line:main'],
},
zip_safe=False)

0 comments on commit 31093c8

Please sign in to comment.