commit 533e52f90e088a095747e34b530e19ace53a220d Author: Chris Proctor Date: Fri May 17 18:06:52 2024 -0400 Initial commit diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..f41a479 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "lab-subrosa" +version = "0.1.0" +description = "" +authors = ["Chris Proctor "] +readme = "README.md" +packages = [{include = "lab_subrosa"}] + +[tool.poetry.dependencies] +python = "^3.10" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"