eth-address-index

signed metadata declarations for ethereum addresses
Log | Files | Refs

setup.cfg (1179B)


      1 [metadata]
      2 name = eth-address-index
      3 version = 0.7.2
      4 description = Signed metadata declarations for ethereum addresses
      5 author = Louis Holbrook
      6 author_email = dev@holbrook.no
      7 url = https://holbrook.no/src/eth-address-index/log.html
      8 keywords =
      9 	ethereum
     10 classifiers =
     11 	Programming Language :: Python :: 3
     12 	Operating System :: OS Independent
     13 	Development Status :: 4 - Beta
     14 	Environment :: Console
     15 	Intended Audience :: Developers
     16 	License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
     17 	Topic :: Internet
     18 	Topic :: Software Development :: Libraries
     19 	#Topic :: Blockchain :: EVM
     20 license = AGPLv3+
     21 licence_files =
     22 	LICENSE
     23 
     24 [options]
     25 include_package_data = True
     26 python_requires = >= 3.7
     27 packages =
     28 	eth_address_declarator
     29 	eth_address_declarator.runnable
     30 	eth_address_declarator.unittest
     31 
     32 [options.package_data]
     33 * = 
     34 	data/AddressDeclarator.json
     35 	data/AddressDeclarator.bin
     36 	data/ERC20.json
     37 
     38 [options.entry_points]
     39 console_scripts =
     40 	eth-address-declarator-publish = eth_address_declarator.runnable.publish:main
     41 	eth-address-declarator-add = eth_address_declarator.runnable.add:main
     42 	eth-address-declarator-view = eth_address_declarator.runnable.view:main