-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 891 Bytes
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 891 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "girlfriend-in-cli"
version = "0.1.4.1"
description = "Girlfriend in CLI — terminal romance simulator for vibe coding breaks."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
dependencies = [
"openai>=1.0.0",
"rich>=14,<15",
]
[project.optional-dependencies]
llm = ["anthropic>=0.40.0"]
personas = ["PyYAML>=6.0.0"]
dev = ["pytest>=9,<10"]
[project.scripts]
girlfriend-in-cli = "girlfriend_generator.cli:main"
girlfriend-generator = "girlfriend_generator.cli:main"
mygf = "girlfriend_generator.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
girlfriend_generator = ["assets/personas/*.json"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]