Retarget deploy command module in setup.py

pull/1565/head
Kieran Prasch 2020-01-16 10:57:49 -08:00
parent 0db9f719cf
commit 857adacfba
No known key found for this signature in database
GPG Key ID: 199AB839D4125A62
2 changed files with 2 additions and 2 deletions

View File

@ -808,7 +808,7 @@ class Staker(NucypherTokenActor):
# Update staking cache element
stakes = self.stakes
# Select stake to divide from local cache
# Select stake to prolong from local cache
try:
current_stake = stakes[stake_index]
except KeyError:

View File

@ -144,7 +144,7 @@ setup(name=ABOUT['__title__'],
# Entry Points
entry_points={'console_scripts': [
f'{PACKAGE_NAME} = {PACKAGE_NAME}.cli.main:nucypher_cli',
f'{PACKAGE_NAME}-deploy = {PACKAGE_NAME}.cli.deploy:deploy',
f'{PACKAGE_NAME}-deploy = {PACKAGE_NAME}.cli.commands.deploy:deploy',
]},
cmdclass={'verify': VerifyVersionCommand},