# (c) Copyright 2018 by Coinkite Inc. This file is covered by license found in COPYING-CC. # # based on # # To use this, install with: # # pip install --editable . from setuptools import setup setup( name='signit', version='1.0', py_modules=['signit', 'sigheader'], install_requires=[ 'Click', ], entry_points=''' [console_scripts] signit=signit:main ''', )