-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
executable file
·40 lines (38 loc) · 1.5 KB
/
setup.py
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
#!/usr/bin/env python3
#
# ssh-import-id - Authorize SSH public keys from trusted online identities.
# Copyright (c) 2013 Casey Marshall <[email protected]>
#
# 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
from ssh_import_id import __version__
try:
readme = open(os.path.join(os.path.dirname(__file__), "README.md")).read()
except:
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=readme,
version=__version__,
author='Dustin Kirkland, Casey Marshall',
author_email='[email protected], [email protected]',
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', 'usr/bin/ssh-import-id-gh', 'usr/bin/ssh-import-id-lp'],
install_requires=["Requests>=1.1.0"],
)