2021-02-01 18:12:51 +01:00
|
|
|
[metadata]
|
|
|
|
name = cic-eth
|
2021-10-15 22:16:45 +02:00
|
|
|
#version = attr: cic_eth.version.__version_string__
|
2021-10-18 14:08:39 +02:00
|
|
|
version = 0.12.4a13
|
2021-02-01 18:12:51 +01:00
|
|
|
description = CIC Network Ethereum interaction
|
|
|
|
author = Louis Holbrook
|
|
|
|
author_email = dev@holbrook.no
|
|
|
|
url = https://gitlab.com/grassrootseconomics/cic-eth
|
|
|
|
keywords =
|
|
|
|
cic
|
|
|
|
cryptocurrency
|
|
|
|
ethereum
|
|
|
|
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.txt
|
|
|
|
|
|
|
|
[options]
|
|
|
|
python_requires = >= 3.6
|
2021-08-17 08:46:51 +02:00
|
|
|
include_package_data = True
|
2021-02-01 18:12:51 +01:00
|
|
|
packages =
|
|
|
|
cic_eth
|
2021-08-17 08:46:51 +02:00
|
|
|
cic_eth.cli
|
2021-02-01 18:12:51 +01:00
|
|
|
cic_eth.admin
|
|
|
|
cic_eth.eth
|
|
|
|
cic_eth.api
|
|
|
|
cic_eth.db
|
|
|
|
cic_eth.db.models
|
|
|
|
cic_eth.queue
|
2021-02-17 09:19:42 +01:00
|
|
|
cic_eth.ext
|
2021-02-01 18:12:51 +01:00
|
|
|
cic_eth.runnable
|
2021-02-17 09:19:42 +01:00
|
|
|
cic_eth.runnable.daemons
|
|
|
|
cic_eth.runnable.daemons.filters
|
2021-02-01 18:12:51 +01:00
|
|
|
cic_eth.callbacks
|
2021-04-05 17:07:09 +02:00
|
|
|
cic_eth.sync
|
2021-04-23 23:02:51 +02:00
|
|
|
cic_eth.check
|
2021-07-08 17:28:04 +02:00
|
|
|
# should be concealed behind extras "test" if possible (but its not unfortunately)
|
|
|
|
cic_eth.pytest
|
|
|
|
cic_eth.pytest.mock
|
2021-02-01 18:12:51 +01:00
|
|
|
scripts =
|
|
|
|
./scripts/migrate.py
|
|
|
|
|
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
2021-02-08 22:39:50 +01:00
|
|
|
# daemons
|
2021-07-07 09:45:21 +02:00
|
|
|
cic-eth-taskerd = cic_eth.runnable.daemons.tasker:main [services]
|
|
|
|
cic-eth-trackerd = cic_eth.runnable.daemons.tracker:main [services]
|
|
|
|
cic-eth-dispatcherd = cic_eth.runnable.daemons.dispatcher:main [services]
|
|
|
|
cic-eth-retrierd = cic_eth.runnable.daemons.retry:main [services]
|
2021-02-08 22:39:50 +01:00
|
|
|
# tools
|
2021-07-07 09:45:21 +02:00
|
|
|
cic-eth-create = cic_eth.runnable.create:main [tools]
|
|
|
|
cic-eth-inspect = cic_eth.runnable.view:main [tools]
|
|
|
|
cic-eth-ctl = cic_eth.runnable.ctrl:main [tools]
|
|
|
|
cic-eth-info = cic_eth.runnable.info:main [tools]
|
2021-02-08 22:39:50 +01:00
|
|
|
# TODO: Merge this with ctl when subcmds sorted to submodules
|
2021-07-07 09:45:21 +02:00
|
|
|
cic-eth-tag = cic_eth.runnable.tag:main [tools]
|
|
|
|
cic-eth-resend = cic_eth.runnable.resend:main [tools]
|
|
|
|
cic-eth-transfer = cic_eth.runnable.transfer:main [tools]
|