setup.cfg (983B)
1 [metadata] 2 name = chaind-eth 3 version = 0.4.0 4 description = Queue server for ethereum 5 author = Louis Holbrook 6 author_email = dev@holbrook.no 7 url = https://git.defalsify.org/chaind-eth 8 keywords = 9 dlt 10 blockchain 11 cryptocurrency 12 ethereum 13 classifiers = 14 Programming Language :: Python :: 3 15 Operating System :: OS Independent 16 Development Status :: 3 - Alpha 17 Environment :: Console 18 Intended Audience :: Developers 19 License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+) 20 Topic :: Internet 21 # Topic :: Blockchain :: EVM 22 license = AGPLv3+ 23 licence_files = 24 LICENSE 25 26 [options] 27 python_requires = >= 3.8 28 include_package_data = True 29 packages = 30 chaind.eth 31 chaind.eth.runnable 32 chaind.eth.cli 33 chaind.eth.token 34 35 [options.entry_points] 36 console_scripts = 37 chaind-eth-queuer = chaind.eth.runnable.queuer:main 38 chaind-eth-syncer = chaind.eth.runnable.syncer:main 39 chaind-eth-send = chaind.eth.runnable.send:main 40 #chaind-eth-resend = chaind_eth.runnable.resend:main