We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d0799f commit 212396cCopy full SHA for 212396c
MANIFEST.in
@@ -1,2 +1,2 @@
1
-LICENSE
2
-README.rst
+include LICENSE
+include README.rst
setup.py
@@ -1,3 +1,4 @@
+import os
from setuptools import setup
3
4
install_requires = ['requests']
@@ -17,6 +18,7 @@
17
18
license=open('LICENSE').read(),
19
package_data={'': ['LICENSE', 'README.md']},
20
packages=['consulate'],
21
+ entry_points=dict(console_scripts=['passport=consulate.passport:main']),
22
classifiers=['Development Status :: 3 - Alpha',
23
'Intended Audience :: Developers',
24
'License :: OSI Approved :: BSD License',
0 commit comments