diff --git a/MANIFEST.in b/MANIFEST.in index 247e155..9c8317c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,2 @@ -LICENSE -README.rst \ No newline at end of file +include LICENSE +include README.rst \ No newline at end of file diff --git a/setup.py b/setup.py index 7fe3b58..25fc797 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,4 @@ +import os from setuptools import setup install_requires = ['requests'] @@ -17,6 +18,7 @@ license=open('LICENSE').read(), package_data={'': ['LICENSE', 'README.md']}, packages=['consulate'], + entry_points=dict(console_scripts=['passport=consulate.passport:main']), classifiers=['Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License',