Claude-Space / pyproject.toml
ReyDev's picture
✨ feat(ai.py): add traceable decorator to get_anthropic_response methods for better debugging and tracking
e6f89d5 unverified
[tool.poetry]
name = "claude-space"
version = "0.1.0"
description = ""
authors = ["Shreyam Maity <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "claude_space"}]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.31.0"
gradio = "^3.41.2"
anthropic = "^0.3.10"
python-dotenv = "^1.0.0"
flake8 = "^6.1.0"
isort = "^5.12.0"
langsmith = "^0.0.26"
[tool.poetry.dev-dependencies]
pre-commit = "^2.15.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
known_third_party = ["anthropic", "gradio"]
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''