eth-erc20/python/setup.cfg

42 lines
1.1 KiB
INI
Raw Normal View History

2020-12-01 23:54:17 +01:00
[metadata]
name = giftable-erc20-token
2021-02-15 18:16:13 +01:00
version = 0.0.7b9
2020-12-01 23:54:17 +01:00
description = Simple ERC20 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/nolash/giftable-erc-token
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]
2020-12-08 16:06:24 +01:00
include_package_data = True
2020-12-01 23:54:17 +01:00
python_requires = >= 3.6
packages =
giftable_erc20_token
2020-12-01 23:54:17 +01:00
giftable_erc20_token.runnable
install_requires =
web3==5.12.2
2021-02-07 16:34:06 +01:00
crypto-dev-signer~=0.4.13rc2
2020-12-01 23:54:17 +01:00
2020-12-08 16:06:24 +01:00
[options.package_data]
* =
2020-12-18 10:34:45 +01:00
data/GiftableToken.json
data/GiftableToken.bin
2020-12-08 16:06:24 +01:00
2020-12-01 23:54:17 +01:00
[options.entry_points]
console_scripts =
giftable-token-deploy = giftable_erc20_token.runnable.deploy:main
2020-12-07 11:41:06 +01:00
giftable-token-gift = giftable_erc20_token.runnable.gift:main