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-08-08 10:45:37 +02:00
|
|
|
setup(
|
|
|
|
name="crypto-dev-signer",
|
2020-10-26 09:02:29 +01:00
|
|
|
version="0.4.0",
|
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',
|
|
|
|
'crypto_dev_signer.eth',
|
|
|
|
'crypto_dev_signer.keystore',
|
2020-10-18 10:32:23 +02:00
|
|
|
'crypto_dev_signer.runnable',
|
2020-08-08 11:33:15 +02:00
|
|
|
'crypto_dev_signer',
|
|
|
|
],
|
2020-10-17 02:44:25 +02:00
|
|
|
install_requires=[
|
|
|
|
'web3',
|
|
|
|
'psycopg2',
|
|
|
|
'cryptography',
|
|
|
|
'eth-keys',
|
|
|
|
'pysha3',
|
|
|
|
'rlp',
|
|
|
|
'json-rpc',
|
2020-10-26 09:02:29 +01:00
|
|
|
'confini==0.2.7',
|
2020-10-20 08:37:20 +02:00
|
|
|
'sqlalchemy==1.3.19',
|
2020-10-17 02:44:25 +02:00
|
|
|
],
|
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',
|
|
|
|
],
|
|
|
|
},
|
2020-08-08 12:07:39 +02:00
|
|
|
url='https://gitlab.com/nolash/crypto-dev-signer',
|
2020-08-08 10:45:37 +02:00
|
|
|
)
|