From 2616f324ab5a961c74aac226842a141dbb67d103 Mon Sep 17 00:00:00 2001 From: abondar Date: Sun, 28 Apr 2024 13:38:47 +0300 Subject: [PATCH] Tinkering with package attributes --- pyproject.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1e013ec..ad3d772 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,18 @@ [tool.poetry] name = "django-copyist" -version = "0.1.1" +version = "0.1.2" description = "Tool for precise and efficient django model copying" authors = ["abondar"] license = "Apache-2.0" readme = "README.rst" +homepage = "https://github.com/abondar/django-copyist" +repository = "https://github.com/abondar/django-copyist.git" +documentation = "https://abondar.github.io/django-copyist/" +keywords = ["django", "copy", "clone", "model"] +packages = [ + { include = "django_copyist" } +] +include = ["CHANGELOG.rst", "LICENSE", "README.rst"] [tool.poetry.dependencies] python = "^3.11"