From a756337ee880b69cecafde1c44bdce13b04324ae Mon Sep 17 00:00:00 2001 From: zeptofine Date: Wed, 8 Nov 2023 15:01:32 -0500 Subject: [PATCH] add pathvalidate to poetry --- poetry.lock | 17 ++++++++++++++++- pyproject.toml | 1 + 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 89d0817..ea33bf4 100644 --- a/poetry.lock +++ b/poetry.lock @@ -190,6 +190,21 @@ numpy = [ {version = ">=1.21.2", markers = "platform_system != \"Darwin\" and python_version >= \"3.10\" and python_version < \"3.11\""}, ] +[[package]] +name = "pathvalidate" +version = "3.2.0" +description = "pathvalidate is a Python library to sanitize/validate a string such as filenames/file-paths/etc." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathvalidate-3.2.0-py3-none-any.whl", hash = "sha256:cc593caa6299b22b37f228148257997e2fa850eea2daf7e4cc9205cef6908dee"}, + {file = "pathvalidate-3.2.0.tar.gz", hash = "sha256:5e8378cf6712bff67fbe7a8307d99fa8c1a0cb28aa477056f8fc374f0dff24ad"}, +] + +[package.extras] +docs = ["Sphinx (>=2.4)", "sphinx-rtd-theme (>=1.2.2)", "urllib3 (<2)"] +test = ["Faker (>=1.0.8)", "allpairspy (>=2)", "click (>=6.2)", "pytest (>=6.0.1)", "pytest-discord (>=0.1.4)", "pytest-md-report (>=0.4.1)"] + [[package]] name = "pillow" version = "10.1.0" @@ -548,4 +563,4 @@ bracex = ">=2.1.1" [metadata] lock-version = "2.0" python-versions = "^3.10, <3.12" -content-hash = "94ab020b39fe7a2782debba9c1945c5d2b636ee38dc73fa0769b2bb7a9b4ff47" +content-hash = "58eabf274b79a4c27867e7420698c65682601026f545eb114ff264734ab41af1" diff --git a/pyproject.toml b/pyproject.toml index 95cfd2a..6767228 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,7 @@ python-dateutil = "^2.8.2" rich = "^13.5.3" typer = "^0.9.0" wcmatch = "^8.5" +pathvalidate = "^3.2.0" [tool.poetry.scripts] imdataset-creator = "imdataset_creator.__main__:app"