2020-08-08 10:45:37 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
2020-10-18 10:32:23 +02:00
|
|
|
f = open('README.md', 'r')
|
|
|
|
long_description = f.read()
|
|
|
|
f.close()
|
|
|
|
|
2020-12-17 11:10:13 +01:00
|
|
|
requirements = []
|
|
|
|
f = open('requirements.txt', 'r')
|
|
|
|
while True:
|
|
|
|
l = f.readline()
|
|
|
|
if l == '':
|
|
|
|
break
|
|
|
|
requirements.append(l.rstrip())
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
test_requirements = []
|
|
|
|
f = open('test_requirements.txt', 'r')
|
|
|
|
while True:
|
|
|
|
l = f.readline()
|
|
|
|
if l == '':
|
|
|
|
break
|
|
|
|
test_requirements.append(l.rstrip())
|
|
|
|
f.close()
|
|
|
|
|
2020-08-08 10:45:37 +02:00
|
|
|
setup(
|
|
|
|
name="crypto-dev-signer",
|
2021-03-17 17:09:42 +01:00
|
|
|
version="0.4.14a1",
|
2020-08-08 10:45:37 +02:00
|
|
|
description="A signer and keystore daemon and library for cryptocurrency software development",
|
|
|
|
author="Louis Holbrook",
|
|
|
|
author_email="dev@holbrook.no",
|
2020-08-08 11:33:15 +02:00
|
|
|
packages=[
|
|
|
|
'crypto_dev_signer.eth.signer',
|
|
|
|
'crypto_dev_signer.eth.web3ext',
|
2021-01-10 18:27:44 +01:00
|
|
|
'crypto_dev_signer.eth.helper',
|
2020-08-08 11:33:15 +02:00
|
|
|
'crypto_dev_signer.eth',
|
|
|
|
'crypto_dev_signer.keystore',
|
2020-10-18 10:32:23 +02:00
|
|
|
'crypto_dev_signer.runnable',
|
2021-01-09 22:59:27 +01:00
|
|
|
'crypto_dev_signer.helper',
|
2020-08-08 11:33:15 +02:00
|
|
|
'crypto_dev_signer',
|
|
|
|
],
|
2020-12-17 11:10:13 +01:00
|
|
|
install_requires=requirements,
|
|
|
|
tests_require=test_requirements,
|
2020-10-18 10:32:23 +02:00
|
|
|
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',
|
2021-03-17 22:08:20 +01:00
|
|
|
'eth-keyfile=crypto_dev_signer.runnable.keyfile:main',
|
2020-10-18 10:32:23 +02:00
|
|
|
],
|
|
|
|
},
|
2020-08-08 12:07:39 +02:00
|
|
|
url='https://gitlab.com/nolash/crypto-dev-signer',
|
2020-08-08 10:45:37 +02:00
|
|
|
)
|