1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
#!/usr/bin/env python3
#
# ssh-import-id - Authorize SSH public keys from trusted online identities.
# Copyright (c) 2013 Casey Marshall <casey.marshall@gmail.com>
#
# ssh-import-id is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3.
#
# ssh-import-id is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with ssh-import-id. If not, see <http://www.gnu.org/licenses/>.
import os
from setuptools import setup
import sys
def read_version():
# shove 'version' into the path so we can import it without going through
# ssh_import_id which has deps that wont be available at setup.py time.
# specifically, from 'ssh_import_id import version'
# will fail due to requests not available.
verdir = os.path.abspath(
os.path.join(os.path.dirname(__file__), "ssh_import_id"))
sys.path.insert(0, verdir)
import version
return version.VERSION
try:
readme = open(os.path.join(os.path.dirname(__file__), "README.md")).read()
except OSError:
readme = ("See: http://pypi.python.org/pypi?name=ssh-import-id&:"
"action=display_pkginfo")
setup(
name='ssh-import-id',
description='Authorize SSH public keys from trusted online identities',
long_description_content_type='markdown',
version=read_version(),
author='Dustin Kirkland, Casey Marshall',
author_email='dustin.kirkland@gmail.com, casey.marshall@gmail.com',
license="GPLv3",
keywords="ssh public key",
url='https://launchpad.net/ssh-import-id',
platforms=['any'],
packages=['ssh_import_id'],
scripts=['usr/bin/ssh-import-id-gh', 'usr/bin/ssh-import-id-lp'],
install_requires=["requests>=1.1.0", "distro"],
entry_points={
'console_scripts': [
'ssh-import-id = ssh_import_id:main'
],
}
)
# vi: ts=4 expandtab syntax=python
|