diff --git a/.gitignore b/.gitignore index 7d2acbe..28a188a 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,5 @@ venv/ .mypy_cache *.PDF *.pdf +.python-version +uv.lock diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ffcbf94 --- /dev/null +++ b/pyproject.toml @@ -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", +]