eth-erc20/python/setup.cfg

55 lines
1.4 KiB
INI
Raw Normal View History

2020-12-01 23:54:17 +01:00
[metadata]
2021-05-02 16:33:00 +02:00
name = eth-erc20
2023-02-22 11:49:25 +01:00
version = 0.6.1
2021-05-02 16:33:00 +02:00
description = ERC20 interface and simple contract with deployment script that lets any address mint and gift itself tokens.
2020-12-01 23:54:17 +01:00
author = Louis Holbrook
author_email = dev@holbrook.no
url = https://git.defalsify.org/eth-erc20
2020-12-01 23:54:17 +01:00
keywords =
dlt
2020-12-01 23:54:17 +01:00
ethereum
token
blockchain
cryptocurrency
2020-12-01 23:54:17 +01:00
classifiers =
Programming Language :: Python :: 3
Operating System :: OS Independent
Development Status :: 3 - Alpha
Environment :: No Input/Output (Daemon)
Intended Audience :: Developers
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
2020-12-01 23:54:17 +01:00
Topic :: Internet
#Topic :: Blockchain :: EVM
2022-11-23 17:04:26 +01:00
license = AGPLv3+
2020-12-01 23:54:17 +01:00
licence_files =
LICENSE
[options]
2020-12-08 16:06:24 +01:00
include_package_data = True
python_requires = >= 3.7
2020-12-01 23:54:17 +01:00
packages =
giftable_erc20_token
2020-12-01 23:54:17 +01:00
giftable_erc20_token.runnable
2023-02-21 21:28:25 +01:00
giftable_erc20_token.unittest
2021-04-04 14:47:32 +02:00
giftable_erc20_token.data
2021-05-02 16:33:00 +02:00
eth_erc20
eth_erc20.data
eth_erc20.runnable
2022-01-22 12:56:07 +01:00
static_token.data
2020-12-01 23:54:17 +01:00
2020-12-08 16:06:24 +01:00
[options.package_data]
* =
2020-12-18 10:34:45 +01:00
data/GiftableToken.json
data/GiftableToken.bin
2022-01-22 12:56:07 +01:00
data/StaticToken.json
data/StaticToken.bin
2021-05-02 16:33:00 +02:00
data/ERC20.json
2020-12-08 16:06:24 +01:00
2020-12-01 23:54:17 +01:00
[options.entry_points]
console_scripts =
2023-02-21 21:28:25 +01:00
giftable-token-publish = giftable_erc20_token.runnable.publish:main
2020-12-07 11:41:06 +01:00
giftable-token-gift = giftable_erc20_token.runnable.gift:main
2021-05-02 16:33:00 +02:00
erc20-transfer = eth_erc20.runnable.transfer:main
erc20-balance = eth_erc20.runnable.balance:main
2022-01-22 12:56:07 +01:00
erc20-info = eth_erc20.runnable.info:main