Commit fcf4ec29 by Scott Duckworth

update for latest changes

parent b48cf674
include LICENSE include LICENSE
include COPYING include README.rst
include COPYING.LESSER include README.upgrading.rst
include README.md
include lookup.py include lookup.py
include lookup.sh include lookup.sh
include django-sshkey-lookup include django-sshkey-lookup
include openssh-6.2p2-authorized-keys-command-stdin.diff include django-sshkey-lookup-all
recursive-include django_sshkey/management *.py include django-sshkey-lookup-by-username
include django-sshkey-lookup-by-fingerprint
recursive-include django_sshkey/migrations *.py recursive-include django_sshkey/migrations *.py
recursive-include django_sshkey/templates.example * recursive-include django_sshkey/templates.example *
...@@ -29,12 +29,12 @@ ...@@ -29,12 +29,12 @@
import os import os
from setuptools import setup 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 # allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) 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( setup(
name='django-sshkey', name='django-sshkey',
...@@ -60,17 +60,17 @@ setup( ...@@ -60,17 +60,17 @@ setup(
'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
], ],
scripts=[ scripts=[
'django-sshkey-lookup',
'django-sshkey-lookup-all', 'django-sshkey-lookup-all',
'django-sshkey-lookup-by-username', 'django-sshkey-lookup-by-username',
'django-sshkey-lookup-by-fingerprint', 'django-sshkey-lookup-by-fingerprint',
'django-sshkey-lookup',
], ],
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [
'django-sshkey-pylookup = django_sshkey.util:lookup_main',
'django-sshkey-pylookup-all = django_sshkey.util:lookup_all_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-username = django_sshkey.util:lookup_by_username_main',
'django-sshkey-pylookup-by-fingerprint = django_sshkey.util:lookup_by_fingerprint_main', 'django-sshkey-pylookup-by-fingerprint = django_sshkey.util:lookup_by_fingerprint_main',
'django-sshkey-pylookup = django_sshkey.util:lookup_main',
], ],
}, },
) )
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment