eth-address-index/python/setup.cfg

42 lines
1.1 KiB
INI
Raw Normal View History

2020-12-21 23:00:45 +01:00
[metadata]
2020-12-30 08:58:37 +01:00
name = eth-address-index
2023-03-21 18:03:09 +01:00
version = 0.6.3
2020-12-29 19:44:14 +01:00
description = Signed metadata declarations for ethereum addresses
2020-12-21 23:00:45 +01:00
author = Louis Holbrook
author_email = dev@holbrook.no
2021-05-02 17:59:37 +02:00
url = https://gitlab.com/cicnet/eth-address-index
2020-12-21 23:00:45 +01:00
keywords =
ethereum
classifiers =
Programming Language :: Python :: 3
Operating System :: OS Independent
Development Status :: 3 - Alpha
Environment :: No Input/Output (Daemon)
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Topic :: Internet
#Topic :: Blockchain :: EVM
license = GPL3
licence_files =
LICENSE
[options]
include_package_data = True
2023-03-21 18:03:09 +01:00
python_requires = >= 3.7
2020-12-21 23:00:45 +01:00
packages =
2020-12-29 19:44:14 +01:00
eth_address_declarator
eth_address_declarator.runnable
2021-10-04 16:42:09 +02:00
eth_address_declarator.unittest
2020-12-21 23:00:45 +01:00
[options.package_data]
* =
2020-12-29 19:44:14 +01:00
data/AddressDeclarator.json
data/AddressDeclarator.bin
2020-12-30 08:58:37 +01:00
data/ERC20.json
2020-12-21 23:00:45 +01:00
[options.entry_points]
console_scripts =
eth-address-declarator-publish = eth_address_declarator.runnable.publish:main
2020-12-29 19:44:14 +01:00
eth-address-declarator-add = eth_address_declarator.runnable.add:main
eth-address-declarator-view = eth_address_declarator.runnable.view:main