contract-registry

Ethereum Smart Contract key-value registry
Log | Files | Refs

setup.cfg (1129B)


      1 [metadata]
      2 name = eth-contract-registry
      3 version = 0.11.0
      4 description = Ethereum Smart Contract key-value registry
      5 author = Louis Holbrook
      6 author_email = dev@holbrook.no
      7 url = https://holbrook.no/src/eth-contract-registry/log.html
      8 keywords =
      9 	cryptocurrency
     10 	ethereum
     11 	smartcontracts
     12 classifiers =
     13 	Programming Language :: Python :: 3
     14 	Operating System :: OS Independent
     15 	Development Status :: 4 - Beta
     16 	Environment :: Console
     17 	Intended Audience :: Developers
     18 	License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
     19 	Topic :: Software Development :: Libraries
     20 	Topic :: Internet
     21 	#Topic :: Blockchain :: EVM
     22 license = AGPL3+
     23 licence_files =
     24 	LICENSE
     25 
     26 [options]
     27 include_package_data = True
     28 python_requires = >= 3.8
     29 packages = 
     30 	eth_contract_registry
     31 	eth_contract_registry.pytest
     32 	eth_contract_registry.unittest
     33 	eth_contract_registry.runnable
     34 
     35 [options.entry_points]
     36 console_scripts =
     37 	eth-contract-registry-publish = eth_contract_registry.runnable.publish:main
     38 	eth-contract-registry-set = eth_contract_registry.runnable.set:main
     39 	eth-contract-registry-list = eth_contract_registry.runnable.list:main