<!-- CURSOR_SUMMARY --> > [!NOTE] > **Medium Risk** > This is mostly a packaging/documentation change, but it is a breaking change because the integration code and dependencies are removed, so any consumers importing `ToolManager`/`AsyncToolManager` will fail at runtime. > > **Overview** > Marks `langchain-arcade` as **deprecated/inactive** and strips it down to a stub package. > > The PR removes the LangChain/LangGraph integration implementation (`manager.py`, `_utilities.py`), tests, and local dev tooling (`Makefile`, `tox.ini`), and updates `README.md` to a deprecation notice pointing users to `docs.arcade.dev`. > > `pyproject.toml` is bumped to `2.0.0`, clears dependencies, and updates metadata/URLs; importing `langchain_arcade` now only emits a `DeprecationWarning` and exports nothing. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit d3db1346f6399af90dcc516ffe3755bf26cb6f87. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
30 lines
930 B
TOML
30 lines
930 B
TOML
[build-system]
|
|
requires = [ "hatchling",]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "langchain-arcade"
|
|
version = "2.0.0"
|
|
description = "This package is no longer maintained. Please visit https://docs.arcade.dev for the latest Arcade integrations."
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
requires-python = ">=3.10"
|
|
keywords = ["deprecated", "arcade", "langchain"]
|
|
classifiers = [
|
|
"Development Status :: 7 - Inactive",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
]
|
|
dependencies = []
|
|
|
|
[project.urls]
|
|
Homepage = "https://docs.arcade.dev"
|
|
Documentation = "https://docs.arcade.dev"
|
|
Repository = "https://github.com/arcadeai/arcade-mcp"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["langchain_arcade"]
|