setup.cfg (1026B)
1 [metadata] 2 name = craft-nft 3 version = 0.2.0 4 description = A standalone NFT implementation for real-world arts and crafts assets 5 author = Louis Holbrook 6 author_email = dev@holbrook.no 7 url = https://git.defalslfy.org/craft-nft,git 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.7 30 packages = 31 craft_nft 32 craft_nft.runnable 33 34 [options.entry_points] 35 console_scripts = 36 craftnft-publish = craft_nft.runnable.publish:main 37 craftnft-dump = craft_nft.runnable.dump:main 38 craftnft-allocate = craft_nft.runnable.allocate:main 39 craftnft-mint = craft_nft.runnable.mint:main