topic-generator / pyproject.toml
Namgyu-Youn's picture
Update pyproject.toml
7a3ec75 verified
raw
history blame contribute delete
738 Bytes
[tool.poetry]
name = "github-topic-generator"
version = "0.1.2"
description = "GitHub repository topic generator using AI"
authors = ["Namgyu-Youn <[email protected]>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
gradio = "^5.9.1"
torch = {version = "^2.5.1", source = "pytorch"}
transformers = "^4.47.1"
aiohttp = "^3.11.11"
python-dotenv = "^1.0.1"
ruff = "^0.8.5"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.21.0"
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"