diff --git a/.gitignore b/.gitignore index 4d6733e..9029bf4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ *~ *.a +*.egg-info *.o *.py[co] *.so diff --git a/setup.py b/setup.py index 054bcc2..47b8961 100644 --- a/setup.py +++ b/setup.py @@ -20,4 +20,7 @@ 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 'Topic :: System :: Archiving', ], + entry_points = { + 'console_scripts': ['warcat=warcat.__main__:main'], + }, )