From e552999bec37c9afd2205e8686ad9dd860bc6137 Mon Sep 17 00:00:00 2001 From: andrewrgarcia Date: Tue, 17 Jan 2023 11:14:51 -0500 Subject: [PATCH] poetry files to work on issue #148 and protocol to build and publish (in PR comment) --- poetry.lock | 7 +++++++ pyproject.toml | 15 +++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 poetry.lock create mode 100644 pyproject.toml diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..79a98d8 --- /dev/null +++ b/poetry.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Poetry and should not be changed by hand. +package = [] + +[metadata] +lock-version = "2.0" +python-versions = "^3.8" +content-hash = "935b488be9f11b23f14aa1ce3bed4013d88bd77462534b5e4fe5bb82b485bfe9" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..959ea25 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "autocrop" +version = "1.3.0" +description = "Automatically crops faces from batches of pictures" +authors = ["Francois Leblanc "] +license = "BSD License (BSD 2-Clause)" +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.8" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"