mirror of
git://holbrook.no/eth-contract-registry
synced 2024-12-22 04:17:32 +01:00
Rename package
This commit is contained in:
parent
8b673c313c
commit
9d583d416b
1
python/eth_contract_registry/__init__.py
Normal file
1
python/eth_contract_registry/__init__.py
Normal file
@ -0,0 +1 @@
|
|||||||
|
from .registry import Registry
|
@ -1,3 +1,3 @@
|
|||||||
confini~=0.3.6rc3
|
confini~=0.3.6rc3
|
||||||
crypto-dev-signer~=0.4.14a1
|
crypto-dev-signer~=0.4.14a4
|
||||||
chainlib~=0.0.1a26
|
chainlib~=0.0.1a28
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = eth-contract-registry
|
name = eth-contract-registry
|
||||||
version = 0.5.4a1
|
version = 0.5.4a1
|
||||||
description = Contract registry
|
description = Ethereum Smart Contract key-value registry
|
||||||
author = Louis Holbrook
|
author = Louis Holbrook
|
||||||
author_email = dev@holbrook.no
|
author_email = dev@holbrook.no
|
||||||
url = https://gitlab.com/grassrootseconomics/cic-registry
|
url = https://gitlab.com/grassrootseconomics/cic-registry
|
||||||
@ -27,12 +27,14 @@ licence_files =
|
|||||||
include_package_data = True
|
include_package_data = True
|
||||||
python_requires = >= 3.6
|
python_requires = >= 3.6
|
||||||
packages =
|
packages =
|
||||||
contract_registry
|
eth_contract_registry
|
||||||
contract_registry.pytest
|
eth_contract_registry.pytest
|
||||||
|
eth_contract_registry.unittest
|
||||||
|
eth_contract_registry.runnable
|
||||||
|
|
||||||
[options.entry_points]
|
[options.entry_points]
|
||||||
console_scripts =
|
console_scripts =
|
||||||
contract-registry-deploy = contract_registry.runnable.deploy:main
|
eth-contract-registry-deploy = eth_contract_registry.runnable.deploy:main
|
||||||
contract-registry-set = conrtact_registry.runnable.set:main
|
eth-contract-registry-set = eth_conrtact_registry.runnable.set:main
|
||||||
contract-registry-seal = contract_registry.runnable.seal:main
|
eth-contract-registry-seal = eth_contract_registry.runnable.seal:main
|
||||||
contract-registry-list = contract_registry.runnable.list:main
|
eth-contract-registry-list = eth_contract_registry.runnable.list:main
|
||||||
|
@ -1,5 +1,24 @@
|
|||||||
from setuptools import setup
|
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(
|
setup(
|
||||||
package_data={
|
package_data={
|
||||||
'': [
|
'': [
|
||||||
@ -8,4 +27,6 @@ setup(
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
|
install_requires=requirements,
|
||||||
|
tests_require=test_requirements,
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user