Skip to content
This repository has been archived by the owner on Mar 11, 2019. It is now read-only.

Commit

Permalink
Add a shell command
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthchirp committed Oct 11, 2017
1 parent 7632eea commit b0fd979
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion coldwallet/__init__.py
@@ -1,3 +1,3 @@
from __future__ import division, absolute_import

__version__ = "0.0.2"
__version__ = "0.0.3"
6 changes: 6 additions & 0 deletions coldwallet/command_line.py
@@ -0,0 +1,6 @@
from __future__ import division, absolute_import

import coldwallet

def main():
print "coldwallet v%s at your service." % coldwallet.__version__
5 changes: 4 additions & 1 deletion setup.py
Expand Up @@ -27,6 +27,7 @@ def find_version(*file_paths):
setup(
name='coldwallet',
description='Python package to generate secure paper-backed Bitcoin cold storage wallets',
license='BSD',
url='https://github.com/Anthchirp/python-coldwallet',
author='Markus Gerstel',
download_url="https://github.com/Anthchirp/python-coldwallet/releases",
Expand All @@ -36,8 +37,10 @@ def find_version(*file_paths):
'ecdsa',
'pycryptodomex',
],
entry_points = {
'console_scripts': ['coldwallet=coldwallet.command_line:main'],
},
packages=find_packages(),
license='BSD',
setup_requires=[
'pytest-runner'
],
Expand Down

0 comments on commit b0fd979

Please sign in to comment.