[metadata] name = eth-erc20 version = 0.2.1 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://gitlab.com/cic/eth-erc20 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 = giftable_erc20_token giftable_erc20_token.runnable 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-deploy = giftable_erc20_token.runnable.deploy:main giftable-token-gift = giftable_erc20_token.runnable.gift:main giftable-token-minter = giftable_erc20_token.runnable.minter:main erc20-transfer = eth_erc20.runnable.transfer:main erc20-balance = eth_erc20.runnable.balance:main erc20-info = eth_erc20.runnable.info:main