From e6f8c34b85b0542ea94ac90a3912f0abd537422c Mon Sep 17 00:00:00 2001 From: Mario Hernandez Date: Sun, 29 Sep 2024 17:50:44 -0300 Subject: [PATCH] more docs --- README.md | 13 +++++++++---- django_payments_chile/__init__.py | 2 ++ docs/index.md | 10 ++++++++++ 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fc9f025..527497f 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,14 @@ # django-payments-chile -![Python Version](https://img.shields.io/badge/python-3.7%2B-blue) -![Django Version](https://img.shields.io/badge/django-3.2%2B-green) -![License](https://img.shields.io/badge/license-MIT-brightgreen) -![Contributions Welcome](https://img.shields.io/badge/contributions-welcome-brightgreen) +![PyPI - Status](https://img.shields.io/pypi/status/django-payments-chile) +[![Downloads](https://pepy.tech/badge/django-payments-chile)](https://pepy.tech/project/django-payments-chile) +[![Codacy Badge](https://app.codacy.com/project/badge/Grade/fde07768d1714b0b93c6addd5e13bb7f)](https://app.codacy.com/gh/mariofix/django-payments-chile/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade) +[![Codacy Badge](https://app.codacy.com/project/badge/Coverage/7dc3c8d6fe844fdaa1de0cb86c242934)](https://app.codacy.com/gh/mariofix/django-payments-chile/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_coverage) +[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/mariofix/django-payments-chile/main.svg)](https://results.pre-commit.ci/latest/github/mariofix/django-payments-chile/main) +![PyPI](https://img.shields.io/pypi/v/django-payments-chile) +![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-payments-chile) +![PyPI - Implementation](https://img.shields.io/pypi/implementation/django-payments-chile) +![PyPI - License](https://img.shields.io/pypi/l/django-payments-chile) **django-payments-chile** es una librería diseñada para facilitar la integración de pagos en aplicaciones Django a través de múltiples proveedores en Chile. Este proyecto ofrece una API simple y flexible para procesar pagos de manera segura, permitiendo a los desarrolladores concentrarse en construir sus aplicaciones sin complicarse con la lógica de integración de cada proveedor. diff --git a/django_payments_chile/__init__.py b/django_payments_chile/__init__.py index 15c71b7..076418c 100644 --- a/django_payments_chile/__init__.py +++ b/django_payments_chile/__init__.py @@ -1,8 +1,10 @@ from .FlowProvider import FlowProvider from .KhipuProvider import KhipuProvider from .PaykuProvider import PaykuProvider +from .version import __version__ __all__ = [ + "__version__", "FlowProvider", "KhipuProvider", "PaykuProvider", diff --git a/docs/index.md b/docs/index.md index d38f14e..a959c25 100644 --- a/docs/index.md +++ b/docs/index.md @@ -2,6 +2,16 @@ **django-payments-chile** es una extensión de **django-payments** que facilita la integración de proveedores de pago en aplicaciones Django para el mercado chileno. Actualmente soporta Flow, Khipu, Webpay, y más. +![PyPI - Status](https://img.shields.io/pypi/status/django-payments-flow) +[![Downloads](https://pepy.tech/badge/django-payments-flow)](https://pepy.tech/project/django-payments-flow) +[![Codacy Badge](https://app.codacy.com/project/badge/Grade/7dc3c8d6fe844fdaa1de0cb86c242934)](https://app.codacy.com/gh/mariofix/django-payments-flow/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade) +[![Codacy Badge](https://app.codacy.com/project/badge/Coverage/7dc3c8d6fe844fdaa1de0cb86c242934)](https://app.codacy.com/gh/mariofix/django-payments-flow/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_coverage) +[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/mariofix/django-payments-flow/main.svg)](https://results.pre-commit.ci/latest/github/mariofix/django-payments-flow/main) +![PyPI](https://img.shields.io/pypi/v/django-payments-flow) +![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-payments-flow) +![PyPI - Implementation](https://img.shields.io/pypi/implementation/django-payments-flow) +![PyPI - License](https://img.shields.io/pypi/l/django-payments-flow) + ## Características - Soporte para múltiples proveedores de pago en Chile.