2015-06-16 07:44:45 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='sshagent',
|
2015-06-26 10:42:00 +00:00
|
|
|
version='0.2',
|
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'],
|
|
|
|
install_requires=['ecdsa', 'trezor'],
|
|
|
|
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': [
|
|
|
|
'trezor_agent = sshagent.trezor_agent:main'
|
|
|
|
]},
|
|
|
|
)
|