Rename package

This commit is contained in:
nolash 2021-03-24 07:08:39 +01:00
parent 8b673c313c
commit 9d583d416b
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
13 changed files with 33 additions and 9 deletions

View File

@ -0,0 +1 @@
from .registry import Registry

View File

@ -1,3 +1,3 @@
confini~=0.3.6rc3
crypto-dev-signer~=0.4.14a1
chainlib~=0.0.1a26
crypto-dev-signer~=0.4.14a4
chainlib~=0.0.1a28

View File

@ -1,7 +1,7 @@
[metadata]
name = eth-contract-registry
version = 0.5.4a1
description = Contract registry
description = Ethereum Smart Contract key-value registry
author = Louis Holbrook
author_email = dev@holbrook.no
url = https://gitlab.com/grassrootseconomics/cic-registry
@ -27,12 +27,14 @@ licence_files =
include_package_data = True
python_requires = >= 3.6
packages =
contract_registry
contract_registry.pytest
eth_contract_registry
eth_contract_registry.pytest
eth_contract_registry.unittest
eth_contract_registry.runnable
[options.entry_points]
console_scripts =
contract-registry-deploy = contract_registry.runnable.deploy:main
contract-registry-set = conrtact_registry.runnable.set:main
contract-registry-seal = contract_registry.runnable.seal:main
contract-registry-list = contract_registry.runnable.list:main
eth-contract-registry-deploy = eth_contract_registry.runnable.deploy:main
eth-contract-registry-set = eth_conrtact_registry.runnable.set:main
eth-contract-registry-seal = eth_contract_registry.runnable.seal:main
eth-contract-registry-list = eth_contract_registry.runnable.list:main

View File

@ -1,5 +1,24 @@
from setuptools import setup
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()
setup(
package_data={
'': [
@ -8,4 +27,6 @@ setup(
],
},
include_package_data=True,
install_requires=requirements,
tests_require=test_requirements,
)