From 99095c74dacea43b880ac482285326a2304df857 Mon Sep 17 00:00:00 2001 From: Alex Garcia Date: Wed, 13 Nov 2024 11:58:01 -0800 Subject: [PATCH] un ignore pyproject.toml --- .gitignore | 1 - tests/pyproject.toml | 9 +++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 tests/pyproject.toml diff --git a/.gitignore b/.gitignore index 38f9876..ef7a661 100644 --- a/.gitignore +++ b/.gitignore @@ -26,4 +26,3 @@ sqlite-vec.h tmp/ poetry.lock -pyproject.toml \ No newline at end of file diff --git a/tests/pyproject.toml b/tests/pyproject.toml new file mode 100644 index 0000000..15c42c9 --- /dev/null +++ b/tests/pyproject.toml @@ -0,0 +1,9 @@ +[project] +name = "tests" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.12" +dependencies = [ + "pytest", "numpy", "syrupy" +]