From 2f9f8a421f8c51d74cf88c10b177c748cfcc0eb8 Mon Sep 17 00:00:00 2001 From: evilchili Date: Sat, 30 Jul 2022 09:50:36 -0700 Subject: [PATCH] adding pyproject.toml --- pyproject.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..8edcb45 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,16 @@ +[tool.poetry] +name = 'dnd-rolltable' +version = '0.9' +license = 'The Unlicense' +authors = ['Greg Boyington '] +description = 'Generate roll tables using weighted random distributions' +packages = [ + { include = 'rolltable' } +] + +[tool.poetry.dependencies] +python = '^3.6' + +[build-system] +requires = ['poetry-core~=1.0'] +build-backend = 'poetry.core.masonry.api'