/ pyproject.toml
pyproject.toml
1 [project] 2 name = "llm-fragments-repomix" 3 version = "0.1.0" 4 description = "Load repository contents as LLM fragments using Repomix" 5 readme = "README.md" 6 authors = [{name = "Amolith"}] 7 license = "Apache-2.0" 8 requires-python = ">=3.9" 9 dependencies = [ 10 "llm" 11 ] 12 13 [build-system] 14 requires = ["setuptools"] 15 build-backend = "setuptools.build_meta" 16 17 [project.urls] 18 Homepage = "https://git.sr.ht/~amolith/llm-fragments-repomix" 19 Changelog = "https://git.sr.ht/~amolith/llm-fragments-repomix/refs" 20 Issues = "https://todo.sr.ht/~amolith/public-tracker" 21 22 [project.entry-points.llm] 23 fragments_repomix = "llm_fragments_repomix" 24 25 [project.optional-dependencies] 26 test = ["pytest"]