File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,14 @@ The script will:
74742 . Process files according to .gitignore rules
75753 . Generate ` llms.txt ` with compressed content
7676
77+ ### Install Locally
78+
79+ ``` bash
80+ pip install --user .
81+ ```
82+
83+ Now you can use the ` llmstxt ` command from your terminal.
84+
7785### GitHub Actions Integration
7886
7987There are two ways to use this tool with GitHub Actions:
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python3
12"""Command-line interface for llmstxt."""
23
34from .llms import generate_llms_txt
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ requires-python = ">=3.8"
88readme = " README.md"
99license = { text = " MIT" }
1010
11+ [project .scripts ]
12+ llmstxt = " llmstxt.__main__:generate_llms_txt"
13+
1114[project .optional-dependencies ]
1215dev = [" mypy>=1.7.0" , " ruff>=0.1.8" ]
1316
You can’t perform that action at this time.
0 commit comments