From 35f68d68f0c904d17cfcdd6fcce9e430fafbb6a0 Mon Sep 17 00:00:00 2001 From: nshepperd Date: Sat, 24 Feb 2024 20:45:55 +1100 Subject: [PATCH] Add pyproject.toml --- .gitignore | 2 +- pyproject.toml | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore index 970e8f6..53c37a1 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -jaxtorch \ No newline at end of file +dist \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b22a451 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[tool.poetry] +name = "clip-jaxtorch" +version = "0.1.0" +description = "A simple jax implementation of CLIP using jaxtorch." +authors = ["nshepperd "] +license = "MIT" +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.9" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"