rename package name to trezor_agent

nistp521
Roman Zeyde 9 years ago
parent 9a1e49190b
commit a8c6e71825

@ -2,14 +2,14 @@
from setuptools import setup from setuptools import setup
setup( setup(
name='sshagent', name='trezor_agent',
version='0.3', version='0.4',
description='Using Trezor as hardware SSH agent', description='Using Trezor as hardware SSH agent',
author='Roman Zeyde', author='Roman Zeyde',
author_email='roman.zeyde@gmail.com', author_email='roman.zeyde@gmail.com',
license='MIT', license='MIT',
url='http://github.com/romanz/trezor-agent', url='http://github.com/romanz/trezor-agent',
packages=['sshagent', 'sshagent.trezor'], packages=['trezor_agent', 'trezor_agent.trezor'],
install_requires=['ecdsa', 'trezor'], install_requires=['ecdsa', 'trezor'],
platforms=['POSIX'], platforms=['POSIX'],
classifiers=[ classifiers=[
@ -24,6 +24,6 @@ setup(
'Topic :: Communications', 'Topic :: Communications',
], ],
entry_points={'console_scripts': [ entry_points={'console_scripts': [
'trezor-agent = sshagent.__main__:trezor_agent' 'trezor-agent = trezor_agent.__main__:trezor_agent'
]}, ]},
) )

@ -12,7 +12,7 @@ deps=
ecdsa ecdsa
bitcoin bitcoin
commands= commands=
pep8 sshagent pep8 trezor_agent
pylint --report=no --rcfile .pylintrc sshagent pylint --report=no --rcfile .pylintrc trezor_agent
coverage run --omit='sshagent/__main__.py,sshagent/trezor/_library.py' --source sshagent/ -m py.test -v coverage run --omit='trezor_agent/__main__.py,trezor_agent/trezor/_library.py' --source trezor_agent/ -m py.test -v
coverage report coverage report

Loading…
Cancel
Save