Skip to content

Commit 212396c

Browse files
committed
Add passport and fix MANIFEST.in
1 parent 1d0799f commit 212396c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

MANIFEST.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
LICENSE
2-
README.rst
1+
include LICENSE
2+
include README.rst

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import os
12
from setuptools import setup
23

34
install_requires = ['requests']
@@ -17,6 +18,7 @@
1718
license=open('LICENSE').read(),
1819
package_data={'': ['LICENSE', 'README.md']},
1920
packages=['consulate'],
21+
entry_points=dict(console_scripts=['passport=consulate.passport:main']),
2022
classifiers=['Development Status :: 3 - Alpha',
2123
'Intended Audience :: Developers',
2224
'License :: OSI Approved :: BSD License',

0 commit comments

Comments
 (0)