Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

__version__ = "0.1.0"
28 changes: 28 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "graphcore"
version = "0.1.0"
description = "A reusable framework for writing LLM-powered applications that iterate using various client side tools"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "GPL-3.0"}
authors = [
{name = "Certora Ltd."}
]

dependencies = [
"langchain-core==0.3.72",
"langchain==0.3.27",
"langchain-anthropic==0.3.18",
"langgraph-sdk==0.2.0",
"langgraph==0.6.0",
"psycopg==3.2.12",
"psycopg-binary==3.2.12",
]

[tool.setuptools.packages.find]
where = ["."]
include = ["graphcore*"]