Skip to content

Commit

Permalink
fix: missing hivemind entrypoint in setup.py (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl authored Dec 29, 2024
1 parent d375a98 commit 8c5cb85
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ def required(requirements_file):
if pkg.strip() and not pkg.startswith("#")]


PLUGIN_ENTRY_POINT = 'hivemind-redis-db-plugin=hivemind_redis_database:RedisDB'

setup(
name='hivemind-redis-database',
Expand All @@ -48,6 +49,7 @@ def required(requirements_file):
license='Apache-2.0',
author='jarbasAi',
install_requires=required("requirements.txt"),
entry_points={'hivemind.database': PLUGIN_ENTRY_POINT},
author_email='[email protected]',
description='redis database plugin for hivemind-core'
)

0 comments on commit 8c5cb85

Please sign in to comment.