setup.cfg (1214B)
1 [metadata] 2 name = eth-token-index 3 version = 0.6.3 4 description = Token symbol to address unique index 5 author = Louis Holbrook 6 author_email = dev@holbrook.no 7 url = https://gitlab.com/cicnet/eth-address-index 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 :: Internet 18 Topic :: Software Development :: Libraries 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_token_index 29 eth_token_index.runnable 30 31 [options.extras_require] 32 testing = 33 eth-tester==0.5.0b2 34 py-evm==0.3.0a20 35 36 [options.package_data] 37 * = 38 data/TokenUniqueSymbolIndex.bin 39 data/TokenUniqueSymbolIndex.json 40 data/ERC20.json 41 42 [options.entry_points] 43 console_scripts = 44 eth-token-index-publish = eth_token_index.runnable.publish:main 45 eth-token-index-add = eth_token_index.runnable.add:main 46 eth-token-index-list = eth_token_index.runnable.list:main 47 eth-token-index-writer = eth_token_index.runnable.writer:main