commit 0465282a02bc26449613b5f30d9c6154696c3451 Author: Chris Proctor Date: Fri Jun 2 13:02:40 2023 -0400 Initial commit diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b75422c --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "mwc-lab-functions" +version = "0.1.0" +description = "" +authors = ["Chris Proctor "] +readme = "README.md" +packages = [{include = "mwc_lab_functions"}] + +[tool.poetry.dependencies] +python = "^3.11" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"