Skip to content

Commit

Permalink
Fix setup.py entry_points.console_scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
agraboso committed Oct 5, 2015
1 parent b147a9f commit 3e92df3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion merge_ics/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.2"
__version__ = '0.1.3'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
],
packages = ['merge_ics'],
entry_points = {
'console_scripts': ['merge_ics = merge_ics:main']
'console_scripts': ['merge_ics = merge_ics.merge_ics:main']
},
include_package_data = True,
long_description = read_md('README.md'),
classifiers = [
'Programming Language :: Python', ## Python versions?
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: OS Independent',
Expand Down

0 comments on commit 3e92df3

Please sign in to comment.