2015-06-16 07:44:45 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
2015-08-21 18:22:26 +00:00
|
|
|
name='trezor_agent',
|
2016-01-19 20:56:54 +00:00
|
|
|
version='0.6.1',
|
2015-06-16 07:44:45 +00:00
|
|
|
description='Using Trezor as hardware SSH agent',
|
|
|
|
author='Roman Zeyde',
|
|
|
|
author_email='roman.zeyde@gmail.com',
|
|
|
|
url='http://github.com/romanz/trezor-agent',
|
2016-02-15 15:22:01 +00:00
|
|
|
packages=['trezor_agent'],
|
2016-01-15 11:07:01 +00:00
|
|
|
install_requires=['ecdsa>=0.13', 'ed25519>=1.4', 'Cython>=0.23.4', 'trezor>=0.6.6', 'keepkey>=0.7.0', 'semver>=2.2'],
|
2015-06-16 07:44:45 +00:00
|
|
|
platforms=['POSIX'],
|
|
|
|
classifiers=[
|
2016-01-05 17:52:52 +00:00
|
|
|
'Development Status :: 4 - Beta',
|
2015-06-16 07:44:45 +00:00
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Intended Audience :: Information Technology',
|
2016-01-04 19:26:17 +00:00
|
|
|
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
|
2015-06-16 07:44:45 +00:00
|
|
|
'Operating System :: POSIX',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
2016-01-05 18:46:55 +00:00
|
|
|
'Programming Language :: Python :: 3.4',
|
2015-06-16 07:44:45 +00:00
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
'Topic :: System :: Networking',
|
|
|
|
'Topic :: Communications',
|
|
|
|
],
|
|
|
|
entry_points={'console_scripts': [
|
2016-02-15 15:22:01 +00:00
|
|
|
'trezor-agent = trezor_agent.__main__:main'
|
2015-06-16 07:44:45 +00:00
|
|
|
]},
|
|
|
|
)
|