setup.cfg (1204B)
1 [metadata] 2 name = eth-accounts-index 3 version = 0.6.0 4 description = Accounts index evm contract tooling with permissioned writes 5 author = Louis Holbrook 6 author_email = dev@holbrook.no 7 url = https://holbrook.no/src/eth-accounts-index/log.html 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 :: Software Development :: Libraries 18 Topic :: Internet 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_accounts_index 29 eth_accounts_index.runnable 30 eth_accounts_index.unittest 31 32 [options.extras_require] 33 testing = 34 pytest==6.0.1 35 eth-tester==0.5.0b2 36 py-evm==0.3.0a20 37 38 [options.package_data] 39 * = 40 **/data/*.json 41 **/data/*.bin 42 43 [options.entry_points] 44 console_scripts = 45 eth-accounts-index-publish = eth_accounts_index.runnable.publish:main 46 eth-accounts-index-add = eth_accounts_index.runnable.add:main 47 eth-accounts-index-list = eth_accounts_index.runnable.list:main