setup.cfg (1068B)
1 [metadata] 2 name = erc20-transfer-authorization 3 version = 0.5.0 4 description = Simple approval escrow for ERC20 spend approval 5 author = Louis Holbrook 6 author_email = dev@holbrook.no 7 url = https://gitlab.com/cicnet/erc20-transfer-authorization 8 keywords = 9 ethereum 10 classifiers = 11 Programming Language :: Python :: 3 12 Operating System :: OS Independent 13 Development Status :: 3 - Alpha 14 Environment :: Console 15 Intended Audience :: Developers 16 License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+) 17 Topic :: Internet 18 Topic :: Software Development :: Libraries 19 #Topic :: Blockchain :: EVM 20 license = AGPLv3+ 21 licence_files = 22 LICENSE 23 24 [options] 25 include_package_data = True 26 python_requires = >= 3.8 27 packages = 28 erc20_transfer_authorization 29 erc20_transfer_authorization.runnable 30 erc20_transfer_authorization.unittest 31 32 [options.package_data] 33 * = 34 data/ERC20TransferAuthorization.json 35 data/ERC20TransferAuthorization.bin 36 37 [options.entry_points] 38 console_scripts = 39 erc20-transfer-auth-publish = erc20_transfer_authorization.runnable.publish:main