mirror of
https://github.com/kirill-markin/repo-to-text.git
synced 2026-06-30 18:23:56 -07:00
Compare commits
12 commits
297f9d3dde
...
d6c43e6990
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d6c43e6990 | ||
|
|
6e64031b85 | ||
|
|
eff5a5449f | ||
|
|
a4dcaf7b2d | ||
|
|
655d574d5b | ||
|
|
2dd9d67dab | ||
|
|
185f7142e4 | ||
|
|
8ab6b6b182 | ||
|
|
d2b7203431 | ||
|
|
ab760149e0 | ||
|
|
43fd8614da | ||
|
|
92612a4493 |
5 changed files with 809 additions and 707 deletions
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.9", "3.11", "3.13", "3.14"]
|
||||
python-version: ["3.10", "3.11", "3.13", "3.14"]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM python:3.14-slim
|
||||
FROM python:3.14.4-slim
|
||||
|
||||
# Set environment variables
|
||||
ENV PYTHONUNBUFFERED=1 \
|
||||
|
|
|
|||
|
|
@ -256,7 +256,7 @@ To install `repo-to-text` locally for development, follow these steps:
|
|||
|
||||
### Requirements
|
||||
|
||||
- Python >= 3.6
|
||||
- Python >= 3.10
|
||||
- Core dependencies:
|
||||
- setuptools >= 70.0.0
|
||||
- pathspec >= 0.12.1
|
||||
|
|
|
|||
1506
poetry.lock
generated
1506
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -4,13 +4,13 @@ build-backend = "hatchling.build"
|
|||
|
||||
[project]
|
||||
name = "repo-to-text"
|
||||
version = "1.0.1"
|
||||
version = "2.0.0"
|
||||
authors = [
|
||||
{ name = "Kirill Markin", email = "markinkirill@gmail.com" },
|
||||
]
|
||||
description = "Convert a directory structure and its contents into a single text file, including the tree output and file contents in structured XML format. It may be useful to chat with LLM about your code."
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.9"
|
||||
requires-python = ">=3.10"
|
||||
license = { text = "MIT" }
|
||||
classifiers = [
|
||||
"Programming Language :: Python :: 3",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue