address test errors

This commit is contained in:
Zhan Li 2025-05-25 00:33:35 -07:00
parent e066b481af
commit 34aa48c0a1
3 changed files with 1489 additions and 92 deletions

View file

@ -10,7 +10,7 @@ authors = [
]
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.8"
requires-python = ">=3.9"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
@ -33,18 +33,29 @@ Repository = "https://github.com/kirill-markin/repo-to-text"
repo-to-text = "repo_to_text.main:main"
flatten = "repo_to_text.main:main"
[project.optional-dependencies]
dev = [
"pytest>=8.2.2",
"black",
"mypy",
"isort",
"build",
"twine",
"pylint",
]
#[project.optional-dependencies]
#dev = [
# "pytest>=8.2.2",
# "black",
# "mypy",
# "isort",
# "build",
# "twine",
# "pylint",
#]
[tool.pylint]
disable = [
"C0303",
]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
black = "^25.1.0"
mypy = "^1.15.0"
isort = "^6.0.1"
build = "^1.2.2.post1"
twine = "^6.1.0"
pylint = "^3.3.7"