eth-erc20

ERC20 interface and example giftable token contract
Info | Log | Files | Refs | LICENSE

setup.cfg (1454B)


      1 [metadata]
      2 name = eth-erc20
      3 version = 0.9.0
      4 description = ERC20 interface and simple contract with deployment script that lets any address mint and gift itself tokens.
      5 author = Louis Holbrook
      6 author_email = dev@holbrook.no
      7 url = https://git.defalsify.org/eth-erc20
      8 keywords =
      9 	dlt
     10 	ethereum
     11 	token
     12 	blockchain
     13 	cryptocurrency
     14 classifiers =
     15 	Programming Language :: Python :: 3
     16 	Operating System :: OS Independent
     17 	Development Status :: 4 - Beta
     18 	Environment :: Console
     19 	Intended Audience :: Developers
     20 	License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
     21 	Topic :: Internet
     22 	Topic :: Software Development :: Libraries
     23 	#Topic :: Blockchain :: EVM
     24 license = AGPLv3+
     25 licence_files =
     26 	LICENSE
     27 
     28 [options]
     29 include_package_data = True
     30 python_requires = >= 3.8
     31 packages =
     32 	giftable_erc20_token
     33 	giftable_erc20_token.runnable
     34 	giftable_erc20_token.unittest
     35 	giftable_erc20_token.data
     36 	eth_erc20
     37 	eth_erc20.data
     38 	eth_erc20.runnable
     39 	eth_erc20.unittest
     40 	static_token.data
     41 
     42 [options.package_data]
     43 * =
     44  	data/GiftableToken.json
     45  	data/GiftableToken.bin
     46  	data/StaticToken.json
     47  	data/StaticToken.bin
     48  	data/ERC20.json
     49 
     50 [options.entry_points]
     51 console_scripts =
     52 	giftable-token-publish = giftable_erc20_token.runnable.publish:main
     53 	giftable-token-gift = giftable_erc20_token.runnable.gift:main
     54 	erc20-transfer = eth_erc20.runnable.transfer:main
     55 	erc20-balance = eth_erc20.runnable.balance:main
     56 	erc20-info = eth_erc20.runnable.info:main