2020-08-08 10:45:37 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="crypto-dev-signer",
|
2020-09-22 11:26:48 +02:00
|
|
|
version="0.2.1",
|
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',
|
|
|
|
'crypto_dev_signer',
|
|
|
|
],
|
|
|
|
install_requires=['web3', 'psycopg2', 'cryptography', 'eth-keys', 'pysha3', 'rlp', 'json-rpc'],
|
2020-08-08 10:45:37 +02:00
|
|
|
scripts = [
|
2020-08-08 11:33:15 +02:00
|
|
|
'scripts/crypto-dev-daemon',
|
2020-08-08 10:45:37 +02:00
|
|
|
],
|
2020-08-08 12:07:39 +02:00
|
|
|
data_files = [('', ['LICENSE.txt'])],
|
|
|
|
url='https://gitlab.com/nolash/crypto-dev-signer',
|
2020-08-08 10:45:37 +02:00
|
|
|
)
|