Skip to content

Commit 2e92054

Browse files
committed
Include all SDK packages
Include all necessary packages to SDK works correctly.
1 parent c5fb70f commit 2e92054

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

mercadopago/config/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Config():
1010
"""
1111

1212
def __init__(self):
13-
self.__version = "2.0.0"
13+
self.__version = "2.0.6"
1414
self.__user_agent = "MercadoPago Python SDK v" + self.__version
1515
self.__product_id = "bc32bpftrpp001u8nhlg"
1616
self.__tracking_id = "platform:" + platform.python_version()

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,22 @@
33
"""
44

55
import unittest
6-
from setuptools import setup
6+
from setuptools import setup, find_packages
77

88

99
setup(
1010
name="mercadopago",
11-
version="2.0.0",
11+
version="2.0.6",
1212
description="Mercadopago SDK module for Payments integration",
1313
author="Mercado Pago SDK",
1414
author_email="[email protected]",
1515
url="https://github.com/mercadopago/sdk-python",
1616
license="MIT",
1717
keywords="api mercadopago checkout payment in sdk integration lts",
18-
packages=["mercadopago"],
18+
packages=find_packages(exclude=("tests",)),
19+
include_package_data=True,
1920
long_description=open("README.md").read(),
21+
long_description_content_type="text/markdown",
2022
tests_require=[
2123
"unittest"
2224
],

0 commit comments

Comments
 (0)