mirror of
https://github.com/kirill-markin/repo-to-text.git
synced 2026-07-05 04:33:54 -07:00
Compare commits
25 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
28b0eaf549 | ||
|
|
3baa082fae | ||
|
|
9673b82966 | ||
|
|
7a08f32bfd | ||
|
|
acf449cc9d | ||
|
|
370e27704e | ||
|
|
364848dd73 | ||
|
|
ae67657e92 | ||
|
|
5a600c424f | ||
|
|
d6c43e6990 | ||
|
|
6e64031b85 | ||
|
|
eff5a5449f | ||
|
|
a4dcaf7b2d | ||
|
|
655d574d5b | ||
|
|
2dd9d67dab | ||
|
|
185f7142e4 | ||
|
|
8ab6b6b182 | ||
|
|
d2b7203431 | ||
|
|
ab760149e0 | ||
|
|
43fd8614da | ||
|
|
92612a4493 | ||
|
|
297f9d3dde | ||
|
|
c5038f2ab5 | ||
|
|
95db4af30f | ||
|
|
2b556332e0 |
6 changed files with 863 additions and 553 deletions
6
.github/workflows/python-publish.yml
vendored
6
.github/workflows/python-publish.yml
vendored
|
|
@ -13,13 +13,13 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v6
|
||||
with:
|
||||
python-version: '3.x'
|
||||
python-version: '3.14'
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
|
|
@ -27,7 +27,7 @@ jobs:
|
|||
- name: Build package
|
||||
run: python -m build
|
||||
- name: Publish package
|
||||
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
|
||||
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b
|
||||
with:
|
||||
user: __token__
|
||||
password: ${{ secrets.PYPI_API_TOKEN }}
|
||||
|
|
|
|||
4
.github/workflows/tests.yml
vendored
4
.github/workflows/tests.yml
vendored
|
|
@ -14,10 +14,10 @@ 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
|
||||
- uses: actions/checkout@v7
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v6
|
||||
with:
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM python:3.14-slim
|
||||
FROM python:3.14.6-slim
|
||||
|
||||
# Set environment variables
|
||||
ENV PYTHONUNBUFFERED=1 \
|
||||
|
|
|
|||
|
|
@ -256,10 +256,10 @@ 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
|
||||
- pathspec >= 1.0.4
|
||||
- argparse >= 1.4.0
|
||||
- PyYAML >= 6.0.1
|
||||
|
||||
|
|
@ -273,6 +273,7 @@ For development, additional packages are required:
|
|||
- isort
|
||||
- build
|
||||
- twine
|
||||
- pylint
|
||||
|
||||
### Running Tests
|
||||
|
||||
|
|
|
|||
1389
poetry.lock
generated
1389
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -1,16 +1,16 @@
|
|||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
requires = ["hatchling>=1.30.1"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "repo-to-text"
|
||||
version = "1.0.1"
|
||||
version = "2.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.9"
|
||||
requires-python = ">=3.10"
|
||||
license = { text = "MIT" }
|
||||
classifiers = [
|
||||
"Programming Language :: Python :: 3",
|
||||
|
|
@ -20,7 +20,7 @@ classifiers = [
|
|||
]
|
||||
dependencies = [
|
||||
"setuptools>=70.0.0",
|
||||
"pathspec>=0.12.1",
|
||||
"pathspec>=1.0.4",
|
||||
"argparse>=1.4.0",
|
||||
"PyYAML>=6.0.1",
|
||||
]
|
||||
|
|
@ -49,5 +49,3 @@ disable = [
|
|||
"C0303",
|
||||
]
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue