From 212396c32868de9d75dbd7c677af44c0ad762cfb Mon Sep 17 00:00:00 2001 From: "Gavin M. Roy" Date: Mon, 5 May 2014 13:19:36 -0400 Subject: [PATCH] Add passport and fix MANIFEST.in --- MANIFEST.in | 4 ++-- setup.py | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) 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',