From a44afab7fa3b336d2d96f16b2befebad40aa1faf Mon Sep 17 00:00:00 2001 From: Amat Martinez Vila Date: Tue, 28 Feb 2023 23:57:03 +0100 Subject: [PATCH] add info about project --- __init__.py | 9 ++++++++- pyproject.toml | 2 ++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index 07bbc5f..b8975b5 100644 --- a/__init__.py +++ b/__init__.py @@ -1 +1,8 @@ -__version__='0.4.6' +__title__ = "pyakeneo" +__description__ = "A simple Python client to use the Akeneo PIM API." +__url__ = "https://github.com/KaveTech/akeneo_api_client" +__version__ = "0.4.6" +__author__ = "Kave Tech" +__author_email__ = "kavetech@kavehome.com" +__license__ = "OSL-3.0" +__copyright__ = "Copyright 2023 matthieudelaro" diff --git a/pyproject.toml b/pyproject.toml index 7b07bfc..14abdd5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,8 @@ version = "0.4.6" description = "Python client for the Akeneo API REST" authors = ["Kave Tech "] readme = "README.rst" +license = "MIT" +homepage = "https://github.com/KaveTech/akeneo_api_client" [tool.poetry.dependencies] python = "^3.7"