eth-erc721

ERC-721 'NFT' token interface with example developer badge token contract
Info | Log | Files | Refs | LICENSE

setup.cfg (1298B)


      1 [metadata]
      2 name = eth-erc721
      3 version = 0.4.0
      4 description = ERC721 interface and simple contract with deployment script providing arbitrary minting of NFTs with freely settable tokenids
      5 author = Louis Holbrook
      6 author_email = dev@holbrook.no
      7 url = https://git.defalsify.org/eth-erc721
      8 keywords =
      9 	dlt
     10 	blockchain
     11 	cryptocurrency
     12 	ethereum
     13 	token
     14 	nft
     15 classifiers =
     16 	Programming Language :: Python :: 3
     17 	Operating System :: OS Independent
     18 	Development Status :: 4 - Beta
     19 	Environment :: Console
     20 	Intended Audience :: Developers
     21 	License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
     22 	Topic :: Internet
     23 	Topic :: Software Development :: Libraries
     24 	#Topic :: Blockchain :: EVM
     25 license = AGPLv3+
     26 licence_files =
     27 	LICENSE
     28 
     29 [options]
     30 include_package_data = True
     31 python_requires = >= 3.8
     32 packages =
     33 	eth_badgetoken
     34 	eth_badgetoken.runnable
     35 	eth_badgetoken.unittest
     36 	eth_badgetoken.data
     37 	eth_erc721
     38 	eth_erc721.unittest
     39 	eth_erc721.runnable
     40 	#eth_erc721.data
     41 	#eth_erc721.runnable
     42 
     43 [options.package_data]
     44 * =
     45  	data/BadgeToken.json
     46  	data/BadgeToken.abi
     47  	#data/ERC721.json
     48 
     49 [options.entry_points]
     50 console_scripts =
     51 	eth-badge-publish = eth_badgetoken.runnable.publish:main
     52 	eth-badge-mint = eth_badgetoken.runnable.mint:main
     53 	erc721-transfer = eth_erc721.runnable.transfer:main