trezor-agent/setup.py

43 lines
1.3 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',
2017-07-16 07:28:26 +00:00
version='0.9.2',
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=[
'ecdsa>=0.13',
'ed25519>=1.4',
'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
],
)