Fix entry points.

This commit is contained in:
Pino de Candia 2018-01-25 21:44:36 +00:00
parent 829325633e
commit 5921f3b9f5
2 changed files with 5 additions and 7 deletions

View File

@ -27,8 +27,6 @@ setup-hooks =
[files]
packages =
tatuclient
scripts =
bin/tatu
[entry_points]
tatuclient.versions =
@ -39,15 +37,15 @@ openstack.cli.extension =
openstack.ssh.v1 =
usercert_create = tatuclient.v1.cli.usercert:CreateUserCertCommand
usercert_list = tatuclient.v1.cli.usercert:ListUserCertsCommand
usercert_list = tatuclient.v1.cli.usercert:ListUserCertCommand
usercert_show = tatuclient.v1.cli.usercert:ShowUserCertCommand
usercert_revoke = tatuclient.v1.cli.usercert:RevokeUserCertCommand
hostcert_list = tatuclient.v1.cli.hostcert:ListHostCertsCommand
hostcert_list = tatuclient.v1.cli.hostcert:ListHostCertCommand
hostcert_show = tatuclient.v1.cli.hostcert:ShowHostCertCommand
sshca_create = tatuclient.v1.cli.ca:CreateCACommand
sshca_list = tatuclient.v1.cli.ca:ListCAsCommand
sshca_list = tatuclient.v1.cli.ca:ListCACommand
sshca_show = tatuclient.v1.cli.ca:ShowCACommand
[build_sphinx]

View File

@ -17,8 +17,8 @@ from keystoneauth1 import adapter
from tatuclient import exceptions
from tatuclient.v1.ca import CAController
from tatuclient.v1.hostcert import HostCeretController
from tatuclient.v1.usercert import UserCeretController
from tatuclient.v1.hostcert import HostCertController
from tatuclient.v1.usercert import UserCertController
from tatuclient import version