Claude-Space / pyproject.toml
ReyDev's picture
🔧 refactor(ai.py): reorder imports and improve code readability
42cdc8f unverified
raw
history blame
989 Bytes
[tool.poetry]
name = "claude-space"
version = "0.1.0"
description = ""
authors = ["Shreyam Maity <sm8967724231@gmail.com>"]
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"
[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", "dotenv"]
[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
)
'''