setup.cfg (989B)
1 [metadata] 2 name = eth-monitor 3 version = 0.8.10 4 description = Monitor and cache transactions using match filters 5 author = Louis Holbrook 6 author_email = dev@holbrook.no 7 url = https://git.defalsify.org/eth-monitor 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 Topic :: Software Development :: Libraries 18 Environment :: Console 19 Intended Audience :: Developers 20 License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+) 21 Topic :: Internet 22 # Topic :: Blockchain :: EVM 23 license = AGPLv3+ 24 licence_files = 25 LICENSE 26 27 [options] 28 include_package_data = True 29 python_requires = >=3.8 30 packages = 31 eth_monitor 32 eth_monitor.importers 33 eth_monitor.filters 34 eth_monitor.runnable 35 eth_monitor.mock 36 eth_monitor.cli 37 38 [options.entry_points] 39 console_scripts = 40 eth-monitor = eth_monitor.runnable.sync:main 41 eth-monitor-sync = eth_monitor.runnable.sync:main