52 lines
1.0 KiB
TOML
52 lines
1.0 KiB
TOML
[project]
|
|
name = "daemon-boyfriend"
|
|
version = "1.0.0"
|
|
description = "AI-powered Discord bot for the MSC group with multi-provider support and SearXNG integration"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"discord.py>=2.3.0",
|
|
"anthropic>=0.18.0",
|
|
"openai>=1.12.0",
|
|
"aiohttp>=3.9.0",
|
|
"pydantic>=2.6.0",
|
|
"pydantic-settings>=2.2.0",
|
|
"python-dotenv>=1.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0.0",
|
|
"pytest-asyncio>=0.23.0",
|
|
"pytest-cov>=4.1.0",
|
|
"black>=24.0.0",
|
|
"ruff>=0.2.0",
|
|
"mypy>=1.8.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
daemon-boyfriend = "daemon_boyfriend.__main__:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.black]
|
|
line-length = 100
|
|
target-version = ["py311", "py312"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
select = ["E", "F", "I", "N", "W", "UP"]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.11"
|
|
strict = true
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|