Compare commits

..

No commits in common. "d6c43e69905b4bba1d8d3181bd132cd9e84041a7" and "297f9d3ddef5ff51631fa04929ca12e4a02be953" have entirely different histories.

5 changed files with 696 additions and 798 deletions

View file

@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.13", "3.14"]
python-version: ["3.9", "3.11", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6

View file

@ -1,4 +1,4 @@
FROM python:3.14.4-slim
FROM python:3.14-slim
# Set environment variables
ENV PYTHONUNBUFFERED=1 \

View file

@ -256,7 +256,7 @@ To install `repo-to-text` locally for development, follow these steps:
### Requirements
- Python >= 3.10
- Python >= 3.6
- Core dependencies:
- setuptools >= 70.0.0
- pathspec >= 0.12.1

1484
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -4,13 +4,13 @@ build-backend = "hatchling.build"
[project]
name = "repo-to-text"
version = "2.0.0"
version = "1.0.1"
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.10"
requires-python = ">=3.9"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",