rename package name to trezor_agent
This commit is contained in:
8
setup.py
8
setup.py
@@ -2,14 +2,14 @@
|
||||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name='sshagent',
|
||||
version='0.3',
|
||||
name='trezor_agent',
|
||||
version='0.4',
|
||||
description='Using Trezor as hardware SSH agent',
|
||||
author='Roman Zeyde',
|
||||
author_email='roman.zeyde@gmail.com',
|
||||
license='MIT',
|
||||
url='http://github.com/romanz/trezor-agent',
|
||||
packages=['sshagent', 'sshagent.trezor'],
|
||||
packages=['trezor_agent', 'trezor_agent.trezor'],
|
||||
install_requires=['ecdsa', 'trezor'],
|
||||
platforms=['POSIX'],
|
||||
classifiers=[
|
||||
@@ -24,6 +24,6 @@ setup(
|
||||
'Topic :: Communications',
|
||||
],
|
||||
entry_points={'console_scripts': [
|
||||
'trezor-agent = sshagent.__main__:trezor_agent'
|
||||
'trezor-agent = trezor_agent.__main__:trezor_agent'
|
||||
]},
|
||||
)
|
||||
|
||||
6
tox.ini
6
tox.ini
@@ -12,7 +12,7 @@ deps=
|
||||
ecdsa
|
||||
bitcoin
|
||||
commands=
|
||||
pep8 sshagent
|
||||
pylint --report=no --rcfile .pylintrc sshagent
|
||||
coverage run --omit='sshagent/__main__.py,sshagent/trezor/_library.py' --source sshagent/ -m py.test -v
|
||||
pep8 trezor_agent
|
||||
pylint --report=no --rcfile .pylintrc trezor_agent
|
||||
coverage run --omit='trezor_agent/__main__.py,trezor_agent/trezor/_library.py' --source trezor_agent/ -m py.test -v
|
||||
coverage report
|
||||
|
||||
Reference in New Issue
Block a user