trezor-agent/setup.py

37 lines
1.4 KiB
Python
Raw Normal View History

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-03-12 19:08:52 +00:00
version='0.6.5',
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-05-07 17:38:19 +00:00
packages=['trezor_agent', 'trezor_agent.gpg'],
2016-05-07 10:02:10 +00:00
scripts=['trezor_agent/gpg/trezor-git-gpg-wrapper.sh'],
2016-05-05 19:17:04 +00:00
install_requires=['ecdsa>=0.13', 'ed25519>=1.4', 'Cython>=0.23.4', 'protobuf>=3.0.0b2.post2', 'trezor>=0.6.12', 'semver>=2.2'],
2015-06-16 07:44:45 +00:00
platforms=['POSIX'],
classifiers=[
2016-03-05 09:29:05 +00:00
'Environment :: Console',
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-03-05 09:29:05 +00:00
'Intended Audience :: System Administrators',
'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',
2016-03-05 09:29:05 +00:00
'Topic :: Security',
'Topic :: Utilities',
2015-06-16 07:44:45 +00:00
],
entry_points={'console_scripts': [
2016-03-05 09:15:23 +00:00
'trezor-agent = trezor_agent.__main__:run_agent',
'trezor-git = trezor_agent.__main__:run_git',
2016-04-23 19:55:34 +00:00
'trezor-gpg = trezor_agent.gpg.signer:main',
2015-06-16 07:44:45 +00:00
]},
)