more excludes for gitignore + first pyproject.toml for uv

This commit is contained in:
Karl Voit 2025-09-10 11:29:53 +02:00
parent 6b6e7a70a9
commit 04d1588d96
2 changed files with 15 additions and 0 deletions

2
.gitignore vendored
View file

@ -16,3 +16,5 @@ venv/
.mypy_cache .mypy_cache
*.PDF *.PDF
*.pdf *.pdf
.python-version
uv.lock

13
pyproject.toml Normal file
View file

@ -0,0 +1,13 @@
[project]
name = "guess-filename-py"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"colorama>=0.4.6",
"fuzzywuzzy>=0.18.0",
"levenshtein>=0.27.1",
"pudb>=2025.1",
"pypdf>=6.0.0",
]