2015-06-16 07:44:45 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='sshagent',
|
2015-07-21 11:08:41 +00:00
|
|
|
version='0.3',
|
2015-06-16 07:44:45 +00:00
|
|
|
description='Using Trezor as hardware SSH agent',
|
|
|
|
author='Roman Zeyde',
|
|
|
|
author_email='roman.zeyde@gmail.com',
|
|
|
|
license='MIT',
|
|
|
|
url='http://github.com/romanz/trezor-agent',
|
|
|
|
packages=['sshagent'],
|
2015-08-11 17:46:00 +00:00
|
|
|
install_requires=['ecdsa', 'trezor', 'bitcoin'],
|
2015-06-16 07:44:45 +00:00
|
|
|
platforms=['POSIX'],
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Intended Audience :: Information Technology',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Operating System :: POSIX',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
'Topic :: System :: Networking',
|
|
|
|
'Topic :: Communications',
|
|
|
|
],
|
|
|
|
entry_points={'console_scripts': [
|
2015-07-22 10:48:15 +00:00
|
|
|
'trezor-agent = sshagent.__main__:trezor_agent',
|
|
|
|
'trezor-verify = sshagent.__main__:trezor_verify'
|
2015-06-16 07:44:45 +00:00
|
|
|
]},
|
|
|
|
)
|