setup.cfg (1116B)
1 [metadata] 2 name = eth-owned 3 version = 0.3.0 4 description = EIP 173 interface and tools 5 author = Louis Holbrook 6 author_email = dev@holbrook.no 7 url = https://holbrook.no/src/eth-owned/log.html 8 keywords = 9 ethereum 10 classifiers = 11 Programming Language :: Python :: 3 12 Operating System :: OS Independent 13 Development Status :: 3 - Alpha 14 Environment :: No Input/Output (Daemon) 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 = AGPL3 21 licence_files = 22 LICENSE.txt 23 24 [options] 25 include_package_data = True 26 python_requires = >= 3.8 27 packages = 28 eth_owned 29 eth_owned.data 30 eth_owned.unittest 31 eth_owned.runnable 32 33 [options.extras_require] 34 testing = 35 pytest==6.0.1 36 eth-tester==0.5.0b2 37 py-evm==0.3.0a20 38 39 [options.package_data] 40 * = 41 **/data/*.json 42 **/data/*.bin 43 44 [options.entry_points] 45 console_scripts = 46 #eth-owner-void-deploy = eth_owned.runnable.void_deploy:main 47 #eth-owner-void = eth_owned.runnable.void:main 48 eth-owner = eth_owned.runnable.owner:main