setup.cfg (799B)
1 [metadata] 2 name = eth-stat-syncer 3 version = 0.1.0 4 description = Cache live EVM blockchain stats 5 author = Louis Holbrook 6 author_email = dev@holbrook.no 7 url = https://gitlab.com/nolash/eth-stat-syncer 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 General Public License v3 or later (GPLv3+) 17 Topic :: Internet 18 #Topic :: Blockchain :: EVM 19 license = GPL3 20 licence_files = 21 LICENSE 22 23 [options] 24 include_package_data = True 25 python_requires = >= 3.6 26 packages = 27 eth_stat_syncer 28 eth_stat_syncer.runnable 29 30 [options.entry_points] 31 console_scripts = 32 eth-stat-trackerd = eth_stat_tracker.runnable.tracker:main