This repository has been archived on 2023-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
erc20-demurrage-token-archive/python/setup.cfg

45 lines
1.1 KiB
INI
Raw Normal View History

2021-03-01 10:53:39 +01:00
[metadata]
name = erc20-demurrage-token
2023-02-10 17:33:36 +01:00
version = 0.3.0
2021-03-01 10:53:39 +01:00
description = ERC20 token with redistributed continual demurrage
author = Louis Holbrook
author_email = dev@holbrook.no
2021-07-02 15:29:56 +02:00
url = https://gitlab.com/ccicnet/erc20-demurrage-token
2021-03-01 10:53:39 +01:00
keywords =
ethereum
blockchain
cryptocurrency
erc20
2021-03-01 10:53:39 +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 General Public License v3 or later (GPLv3+)
Topic :: Internet
#Topic :: Blockchain :: EVM
license = GPL3
licence_files =
LICENSE
[options]
include_package_data = True
2022-05-03 20:19:28 +02:00
python_requires = >= 3.7
2021-03-01 10:53:39 +01:00
packages =
erc20_demurrage_token
erc20_demurrage_token.runnable
2021-06-05 17:59:34 +02:00
erc20_demurrage_token.data
2021-06-06 09:37:11 +02:00
erc20_demurrage_token.sim
2022-05-03 20:19:28 +02:00
erc20_demurrage_token.unittest
2021-03-01 10:53:39 +01:00
[options.package_data]
* =
data/DemurrageToken*.bin
data/DemurrageToken*.json
2021-03-01 10:53:39 +01:00
[options.entry_points]
console_scripts =
erc20-demurrage-token-deploy = erc20_demurrage_token.runnable.deploy:main
2022-03-02 09:15:10 +01:00
erc20-demurrage-token-apply = erc20_demurrage_token.runnable.apply:main