forked from mercadopago/sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (48 loc) · 1.75 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"""
Module: setup.py
"""
import unittest
from setuptools import setup, find_packages
setup(
name="mercadopago",
version="2.0.7",
description="Mercadopago SDK module for Payments integration",
author="Mercado Pago SDK",
author_email="[email protected]",
url="https://github.com/mercadopago/sdk-python",
license="MIT",
keywords="api mercadopago checkout payment in sdk integration lts",
packages=find_packages(exclude=("tests",)),
include_package_data=True,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=[
"requests"
],
tests_require=[
"unittest"
],
python_requires=">=3",
cmdclass={"test": unittest},
project_urls={
"Source Code": "https://github.com/mercadopago/sdk-python",
"Documentation | EN": "https://www.mercadopago.com.br/developers/en/reference/",
"Documentation | ES": "https://www.mercadopago.com.br/developers/es/reference/",
"Documentation | PT-BR": "https://www.mercadopago.com.br/developers/pt/reference/",
},
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: Freely Distributable",
],
)