This commit is contained in:
Peter D. Gray 2020-02-11 09:04:31 -05:00
parent a709f15625
commit d0e77b3ca6
No known key found for this signature in database
GPG Key ID: F0E6CC6AFC16CF7B
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
from setuptools import setup, find_packages
VERSION = '1.0'
VERSION = '1.1'
with open('README.md', 'rt') as fd:
desc = fd.read()
@ -22,7 +22,7 @@ if __name__ == '__main__':
long_description=desc,
long_description_content_type="text/markdown",
url="https://github.com/Coldcard/psbt_faker",
py_modules=[],
py_modules=['psbt_faker'],
python_requires='>3.6.0',
install_requires=[
'Click',
@ -30,7 +30,7 @@ if __name__ == '__main__':
],
entry_points='''
[console_scripts]
psbt_faker=main:faker
psbt_faker=psbt_faker:faker
''',
classifiers=[
"Programming Language :: Python :: 3",