setup.cfg (1050B)
1 [metadata] 2 name = eth-faucet 3 version = 0.4.1 4 description = Gas token gifter with controls from time intervals, amounts and access. 5 author = Louis Holbrook 6 author_email = dev@holbrook.no 7 url = https://git.defalsify.org/eth-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 eth_faucet 29 eth_faucet.runnable 30 31 [options.extras_require] 32 testing = 33 pytest==6.0.1 34 eth-tester==0.5.0b2 35 py-evm==0.3.0a20 36 37 [options.package_data] 38 * = 39 **/data/*.json 40 **/data/*.bin 41 42 [options.entry_points] 43 console_scripts = 44 eth-faucet-publish = eth_faucet.runnable.publish:main 45 eth-faucet-gen = eth_faucet.runnable.gen:main