gpg: simplify Python entry point and refactor Bash scripts a bit

Now there is a single 'trezor-gpg' tool, with various subcommands.
This commit is contained in:
Roman Zeyde
2017-04-26 22:05:49 +03:00
parent 02c8e729b7
commit eb525e1b62
5 changed files with 44 additions and 28 deletions

View File

@@ -34,8 +34,6 @@ setup(
],
entry_points={'console_scripts': [
'trezor-agent = trezor_agent.__main__:run_agent',
'trezor-gpg-create = trezor_agent.gpg.__main__:main_create',
'trezor-gpg-agent = trezor_agent.gpg.__main__:main_agent',
'trezor-gpg-unlock = trezor_agent.gpg.__main__:auto_unlock',
'trezor-gpg = trezor_agent.gpg.__main__:main',
]},
)