From ba68f223e6bab03b67fdc63bfd7579a39d7b993b Mon Sep 17 00:00:00 2001 From: Laurent FAINSIN Date: Mon, 24 Apr 2023 15:07:34 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20add=20pyproject.toml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 1241613..65bbd05 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,15 @@ +[project] +name = "torchemd" +version = "1.0.0" +authors = [{ name = "Laurent Fainsin", email = "laurent@fainsin.bzh" }] +description = "PyTorch Wrapper for Point-cloud Earth-Mover-Distance (EMD)" +readme = "README.md" +requires-python = ">=3.9" + +[build-system] +requires = ["flit_core>=3.4"] +build-backend = "flit_core.buildapi" + [tool.ruff] ignore-init-module-imports = true select = ["E", "F", "I"]