Files
loyal_companion/pyproject.toml
latte dbd534d860 refactor: Transform daemon_boyfriend into Loyal Companion
Rebrand and personalize the bot as 'Bartender' - a companion for those
who love deeply and feel intensely.

Major changes:
- Rename package: daemon_boyfriend -> loyal_companion
- New default personality: Bartender - wise, steady, non-judgmental
- Grief-aware system prompt (no toxic positivity, attachment-informed)
- New relationship levels: New Face -> Close Friend progression
- Bartender-style mood modifiers (steady presence)
- New fact types: attachment_pattern, grief_context, coping_mechanism
- Lower mood decay (0.05) for emotional stability
- Higher fact extraction rate (0.4) - Bartender pays attention

Updated all imports, configs, Docker files, and documentation.
2026-01-14 18:08:35 +01:00

52 lines
1.1 KiB
TOML

[project]
name = "loyal-companion"
version = "1.0.0"
description = "A companion for those who love deeply and feel intensely - a safe space to process grief, navigate attachment, and remember that your capacity to care is a strength"
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]
loyal-companion = "loyal_companion.__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"]