mirror of
https://github.com/novoid/guess-filename.py.git
synced 2026-02-16 13:24:15 +00:00
more excludes for gitignore + first pyproject.toml for uv
This commit is contained in:
parent
6b6e7a70a9
commit
04d1588d96
2 changed files with 15 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -16,3 +16,5 @@ venv/
|
|||
.mypy_cache
|
||||
*.PDF
|
||||
*.pdf
|
||||
.python-version
|
||||
uv.lock
|
||||
|
|
|
|||
13
pyproject.toml
Normal file
13
pyproject.toml
Normal 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",
|
||||
]
|
||||
Loading…
Reference in a new issue