From 3082318e0dc6bd69c166e89e6c846432917838eb Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Sun, 12 Apr 2026 20:47:05 -0700 Subject: [PATCH] feat(community): add community module skeleton with psycopg2 dependency --- circuitforge_core/community/__init__.py | 8 ++++++++ pyproject.toml | 1 + 2 files changed, 9 insertions(+) create mode 100644 circuitforge_core/community/__init__.py diff --git a/circuitforge_core/community/__init__.py b/circuitforge_core/community/__init__.py new file mode 100644 index 0000000..a2c0438 --- /dev/null +++ b/circuitforge_core/community/__init__.py @@ -0,0 +1,8 @@ +# circuitforge_core/community/__init__.py +# MIT License + +from .db import CommunityDB +from .models import CommunityPost +from .store import SharedStore + +__all__ = ["CommunityDB", "CommunityPost", "SharedStore"] diff --git a/pyproject.toml b/pyproject.toml index a2de5d8..677f610 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,6 +11,7 @@ dependencies = [ "pyyaml>=6.0", "requests>=2.31", "openai>=1.0", + "psycopg2>=2.9", ] [project.optional-dependencies]