From fcf4ec291a77e54964d04200af06ffbc1a6ca634 Mon Sep 17 00:00:00 2001 From: Scott Duckworth Date: Wed, 26 Mar 2014 11:49:08 -0400 Subject: [PATCH] update for latest changes --- MANIFEST.in | 10 +++++----- setup.py | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 2a22852..06fd98c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,11 +1,11 @@ include LICENSE -include COPYING -include COPYING.LESSER -include README.md +include README.rst +include README.upgrading.rst include lookup.py include lookup.sh include django-sshkey-lookup -include openssh-6.2p2-authorized-keys-command-stdin.diff -recursive-include django_sshkey/management *.py +include django-sshkey-lookup-all +include django-sshkey-lookup-by-username +include django-sshkey-lookup-by-fingerprint recursive-include django_sshkey/migrations *.py recursive-include django_sshkey/templates.example * diff --git a/setup.py b/setup.py index 4227796..1816970 100644 --- a/setup.py +++ b/setup.py @@ -29,12 +29,12 @@ import os from setuptools import setup -README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() +README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read() # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) -execfile('django_sshkey/__init__.py') +exec(open('django_sshkey/__init__.py').read()) setup( name='django-sshkey', @@ -60,17 +60,17 @@ setup( 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], scripts=[ + 'django-sshkey-lookup', 'django-sshkey-lookup-all', 'django-sshkey-lookup-by-username', 'django-sshkey-lookup-by-fingerprint', - 'django-sshkey-lookup', ], entry_points={ 'console_scripts': [ + 'django-sshkey-pylookup = django_sshkey.util:lookup_main', 'django-sshkey-pylookup-all = django_sshkey.util:lookup_all_main', 'django-sshkey-pylookup-by-username = django_sshkey.util:lookup_by_username_main', 'django-sshkey-pylookup-by-fingerprint = django_sshkey.util:lookup_by_fingerprint_main', - 'django-sshkey-pylookup = django_sshkey.util:lookup_main', ], }, ) -- libgit2 0.26.0