mirror of
https://github.com/LeoYeAI/openclaw-master-skills.git
synced 2026-07-27 22:15:43 +00:00
37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "rustchain-langchain"
|
|
version = "0.1.0"
|
|
description = "LangChain + CrewAI tools for RustChain blockchain and BoTTube video platform"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
requires-python = ">=3.10"
|
|
authors = [
|
|
{ name = "Elyan Labs", email = "sophia.eagent@gmail.com" },
|
|
{ name = "createkr", email = "createkr@users.noreply.github.com" },
|
|
]
|
|
keywords = ["langchain", "crewai", "rustchain", "bottube", "blockchain", "ai-agents"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
]
|
|
dependencies = [
|
|
"requests>=2.25",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
langchain = ["langchain-core>=0.2"]
|
|
crewai = ["crewai>=0.30"]
|
|
|
|
[project.urls]
|
|
Homepage = "https://rustchain.org"
|
|
Repository = "https://github.com/Scottcjn/rustchain-mcp"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["rustchain_langchain"]
|