eth-address-index/python/setup.cfg

54 lines
1.4 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
2021-09-09 08:29:29 +02:00
version = 0.2.3a5
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
python_requires = >= 3.6
packages =
2020-12-29 19:44:14 +01:00
eth_address_declarator
eth_address_declarator.runnable
2020-12-30 08:58:37 +01:00
eth_token_index
eth_token_index.runnable
2020-12-21 23:00:45 +01:00
[options.extras_require]
testing =
eth-tester==0.5.0b2
py-evm==0.3.0a20
[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/GiftableToken.bin
data/GifttableToken.json
data/TokenUniqueSymbolIndex.bin
data/TokenUniqueSymbolIndex.json
data/ERC20.json
2020-12-21 23:00:45 +01:00
[options.entry_points]
console_scripts =
2020-12-29 19:44:14 +01:00
eth-address-declarator-deploy = eth_address_declarator.runnable.deploy:main
eth-address-declarator-add = eth_address_declarator.runnable.add:main
2020-12-30 08:58:37 +01:00
eth-token-index-deploy = eth_token_index.runnable.deploy:main
eth-token-index-add = eth_token_index.runnable.add:main
2021-03-21 10:21:23 +01:00
eth-token-index-list = eth_token_index.runnable.list:main