From 674fe0d2c606d2082d62bbdf6ef3e626e219d20d Mon Sep 17 00:00:00 2001 From: "Michael R. Buche" Date: Mon, 11 Nov 2024 13:06:11 -0700 Subject: [PATCH] Create pyproject.toml --- pyproject.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..313805f --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,24 @@ +[project] +name = "pCubit" +description = "Placement of particles/pores using Cubit." +authors = [ + {email = "mrbuche@sandia.gov"}, + {name = "Michael R. Buche"} +] +dependencies = [ + "matplotlib", + "numpy", + "scipy", +] +classifiers = [ + 'License :: OSI Approved :: BSD License', + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Science/Research', + 'Topic :: Scientific/Engineering', + 'Programming Language :: Python', +] + +[project.urls] +Documentation = "https://pcubit.readthedocs.io" +Homepage = "https://sandialabs.github.io/pCubit" +Repository = "https://github.com/sandialabs/pCubit"