Skip to content

Commit

Permalink
Include all SDK packages
Browse files Browse the repository at this point in the history
Include all necessary packages to SDK works correctly.
  • Loading branch information
delias-silva committed Mar 25, 2021
1 parent c5fb70f commit 2e92054
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mercadopago/config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Config():
"""

def __init__(self):
self.__version = "2.0.0"
self.__version = "2.0.6"
self.__user_agent = "MercadoPago Python SDK v" + self.__version
self.__product_id = "bc32bpftrpp001u8nhlg"
self.__tracking_id = "platform:" + platform.python_version()
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,22 @@
"""

import unittest
from setuptools import setup
from setuptools import setup, find_packages


setup(
name="mercadopago",
version="2.0.0",
version="2.0.6",
description="Mercadopago SDK module for Payments integration",
author="Mercado Pago SDK",
author_email="mp_sdk@mercadopago.com",
url="https://github.com/mercadopago/sdk-python",
license="MIT",
keywords="api mercadopago checkout payment in sdk integration lts",
packages=["mercadopago"],
packages=find_packages(exclude=("tests",)),
include_package_data=True,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
tests_require=[
"unittest"
],
Expand Down

0 comments on commit 2e92054

Please sign in to comment.