trezor-agent/setup.py

48 lines
1.5 KiB
Python
Raw Normal View History

2015-06-16 07:44:45 +00:00
#!/usr/bin/env python
from setuptools import setup
setup(
name='libagent',
2018-02-15 17:10:40 +00:00
version='0.9.8',
description='Using hardware wallets as SSH/GPG agent',
2015-06-16 07:44:45 +00:00
author='Roman Zeyde',
author_email='roman.zeyde@gmail.com',
url='http://github.com/romanz/trezor-agent',
2017-05-01 18:35:05 +00:00
packages=[
'libagent',
'libagent.device',
'libagent.gpg',
'libagent.ssh'
],
install_requires=[
2017-11-15 19:29:11 +00:00
'backports.shutil_which>=3.5.1',
2017-12-01 18:22:52 +00:00
'ConfigArgParse>=0.12.0',
'python-daemon>=2.1.2',
2017-05-01 18:35:05 +00:00
'ecdsa>=0.13',
'ed25519>=1.4',
'mnemonic>=0.18',
2017-10-21 18:16:22 +00:00
'pymsgbox>=1.0.6',
'semver>=2.2',
'unidecode>=0.4.20',
2017-05-01 18:35:05 +00:00
],
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',
2016-10-31 21:00:19 +00:00
'Programming Language :: Python :: 3.5',
2017-05-01 18:37:32 +00:00
'Programming Language :: Python :: 3.6',
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
],
)