From 3a5f9f8097a8735bdb31f160fe6256c6733ba1f2 Mon Sep 17 00:00:00 2001 From: Rohit Goswami Date: Sun, 11 Feb 2024 13:49:04 +0000 Subject: [PATCH] ENH: Demonstrate pyproject with setuptools --- pyproject.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..da81c21 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,19 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + +[project] +name = "asv_samples" +version = "0.1.0" +description = "A set of asv samples" +authors = [ + {name = "Rohit Goswami", email = "rgoswami@ieee.org"}, +] +license = {file = "LICENSE"} +readme = "readme.md" + +[project.urls] +repository = "https://github.com/HaoZeke/asv_samples" + +[tool.setuptools.packages.find] +include = ["asv_samples*"]