54 lines
1.5 KiB
TOML
54 lines
1.5 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "ra-aid"
|
|
dynamic = ["version"]
|
|
description = "RA.Aid - ReAct Aid"
|
|
readme = "README.md"
|
|
license = {file = "LICENSE"}
|
|
requires-python = ">=3.8"
|
|
keywords = ["langchain", "ai", "agent", "tools", "development"]
|
|
authors = [{name = "AI Christianson", email = "ai.christianson@christianson.ai"}]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Topic :: Software Development :: Libraries :: Python Modules"
|
|
]
|
|
dependencies = [
|
|
"langchain-anthropic",
|
|
"langgraph",
|
|
"rich>=13.0.0",
|
|
"GitPython==3.1.41",
|
|
"fuzzywuzzy==0.18.0",
|
|
"python-Levenshtein==0.23.0",
|
|
"pathspec>=0.11.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest-timeout>=2.2.0",
|
|
"pytest>=7.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
ra-aid = "ra_aid.__main__:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/ai-christianson/ra-aid"
|
|
Documentation = "https://github.com/ai-christianson/ra-aid#readme"
|
|
Repository = "https://github.com/ai-christianson/ra-aid.git"
|
|
Issues = "https://github.com/ai-christianson/ra-aid/issues"
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "ra_aid.version.__version__"}
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["ra_aid"]
|