You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-agent/setup.py

32 lines
1.2 KiB
Python

9 years ago
#!/usr/bin/env python
from setuptools import setup
setup(
name='libagent',
version='0.9.0',
description='Using hardware wallets as SSH/GPG agent',
9 years ago
author='Roman Zeyde',
author_email='roman.zeyde@gmail.com',
url='http://github.com/romanz/trezor-agent',
packages=['libagent', 'libagent.device', 'libagent.gpg', 'libagent.ssh'],
install_requires=['ecdsa>=0.13', 'ed25519>=1.4', 'semver>=2.2'],
9 years ago
platforms=['POSIX'],
classifiers=[
'Environment :: Console',
8 years ago
'Development Status :: 4 - Beta',
9 years ago
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
9 years ago
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
9 years ago
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking',
'Topic :: Communications',
'Topic :: Security',
'Topic :: Utilities',
9 years ago
],
)