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"