Spaces:
Runtime error
Runtime error
File size: 1,019 Bytes
35cce96 42cdc8f 1686903 e6f89d5 35cce96 42cdc8f 35cce96 42cdc8f 1686903 42cdc8f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
[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
)
'''
|