18 lines
411 B
TOML
18 lines
411 B
TOML
[project]
|
|
name = "llms-txt-generator"
|
|
version = "0.1.0"
|
|
description = "Generate llms.txt documentation for GitHub repositories using DSPy"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = ["dspy>=3.0.4", "requests>=2.31.0", "python-dotenv>=1.0.0"]
|
|
|
|
[project.scripts]
|
|
llmstxt-gen = "main:main"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.4.0",
|
|
"black>=23.0.0",
|
|
"ruff>=0.1.0",
|
|
]
|