setup.cfg (1070B)
1 [metadata] 2 name = erc20-faucet 3 version = 0.8.0 4 description = ERC20 token faucet 5 author = Louis Holbrook 6 author_email = dev@holbrook.no 7 url = https://gitlab.com/cicnet/erc20-faucet 8 keywords = 9 ethereum 10 classifiers = 11 Programming Language :: Python :: 3 12 Operating System :: OS Independent 13 Development Status :: 4 - Beta 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_faucet 29 erc20_faucet.runnable 30 31 [options.extras_require] 32 testing = 33 eth-tester==0.5.0b2 34 py-evm==0.3.0a20 35 36 [options.package_data] 37 * = 38 data/ERC20Faucet.json 39 data/ERC20Faucet.bin 40 data/ERC20FaucetStorage.json 41 data/ERC20FaucetStorage.bin 42 43 [options.entry_points] 44 console_scripts = 45 erc20-faucet-publish = erc20_faucet.runnable.publish:main 46 erc20-faucet-list = erc20_faucet.runnable.list:main