eth-erc20/python/setup.cfg
2023-03-21 20:28:39 +00:00

55 lines
1.4 KiB
INI

[metadata]
name = eth-erc20
version = 0.7.0
description = ERC20 interface and simple contract with deployment script that lets any address mint and gift itself tokens.
author = Louis Holbrook
author_email = dev@holbrook.no
url = https://git.defalsify.org/eth-erc20
keywords =
dlt
ethereum
token
blockchain
cryptocurrency
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 Affero General Public License v3 or later (AGPLv3+)
Topic :: Internet
#Topic :: Blockchain :: EVM
license = AGPLv3+
licence_files =
LICENSE
[options]
include_package_data = True
python_requires = >= 3.7
packages =
giftable_erc20_token
giftable_erc20_token.runnable
giftable_erc20_token.unittest
giftable_erc20_token.data
eth_erc20
eth_erc20.data
eth_erc20.runnable
static_token.data
[options.package_data]
* =
data/GiftableToken.json
data/GiftableToken.bin
data/StaticToken.json
data/StaticToken.bin
data/ERC20.json
[options.entry_points]
console_scripts =
giftable-token-publish = giftable_erc20_token.runnable.publish:main
giftable-token-gift = giftable_erc20_token.runnable.gift:main
erc20-transfer = eth_erc20.runnable.transfer:main
erc20-balance = eth_erc20.runnable.balance:main
erc20-info = eth_erc20.runnable.info:main