commit 71dafa447643ab50870f9c3c3d4b9688fb5c4a45
parent 9876efe377a8289abd7160d71b5f9f1f0ee4c0be
Author: nolash <dev@holbrook.no>
Date: Wed, 15 Sep 2021 17:35:33 +0200
Clean out commented lines in setup
Diffstat:
1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/setup.py b/setup.py
@@ -33,18 +33,16 @@ f.close()
setup(
name="crypto-dev-signer",
- version="0.4.15a3",
+ version="0.4.15a4",
description="A signer and keystore daemon and library for cryptocurrency software development",
author="Louis Holbrook",
author_email="dev@holbrook.no",
packages=[
'crypto_dev_signer.eth.signer',
- #'crypto_dev_signer.eth.web3ext',
- #'crypto_dev_signer.eth.helper',
'crypto_dev_signer.eth',
+ 'crypto_dev_signer.cli',
'crypto_dev_signer.keystore',
'crypto_dev_signer.runnable',
- #'crypto_dev_signer.helper',
'crypto_dev_signer',
],
install_requires=requirements,
@@ -54,9 +52,6 @@ setup(
tests_require=test_requirements,
long_description=long_description,
long_description_content_type='text/markdown',
- #scripts = [
- # 'scripts/crypto-dev-daemon',
- # ],
entry_points = {
'console_scripts': [
'crypto-dev-daemon=crypto_dev_signer.runnable.signer:main',