mirror of
https://github.com/kirill-markin/repo-to-text.git
synced 2025-12-05 19:12:24 -08:00
address test errors
This commit is contained in:
parent
e066b481af
commit
34aa48c0a1
3 changed files with 1489 additions and 92 deletions
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue