cic-stack/apps/cic-cache/setup.cfg

46 lines
1.1 KiB
INI
Raw Normal View History

2021-02-18 06:04:30 +01:00
[metadata]
name = cic-cache
description = CIC Cache API and server
2022-01-04 17:01:01 +01:00
version = 0.3.0a2
2021-02-18 06:04:30 +01:00
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
include_package_data = True
2021-02-18 06:04:30 +01:00
packages =
cic_cache
2021-03-15 14:22:39 +01:00
cic_cache.tasks
2021-02-18 06:04:30 +01:00
cic_cache.db
cic_cache.db.models
cic_cache.cli
2021-02-18 06:04:30 +01:00
cic_cache.runnable
2021-04-02 15:20:05 +02:00
cic_cache.runnable.daemons
cic_cache.runnable.daemons.filters
2021-02-18 06:04:30 +01:00
scripts =
2022-01-04 17:01:01 +01:00
./scripts/migrate_cic_cache.py
2021-02-18 06:04:30 +01:00
[options.entry_points]
console_scripts =
2021-04-02 15:20:05 +02:00
cic-cache-trackerd = cic_cache.runnable.daemons.tracker:main
cic-cache-serverd = cic_cache.runnable.daemons.server:main
cic-cache-taskerd = cic_cache.runnable.daemons.tasker:main
cic-cache-list = cic_cache.runable.list:main