-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (26 loc) · 911 Bytes
/
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
"""
This file is part of the MerchantAPI package.
(c) Miva Inc <https://www.miva.com/>
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
"""
import sys
from setuptools import setup, find_packages
from merchantapi.version import Version
setup(
name='merchantapi',
version=Version.STRING,
license='Miva SDK License Agreement',
author='Miva, Inc.',
author_email='[email protected]',
url='https://www.miva.com',
description='Miva Merchant JSON API SDK',
long_description=open('README.md', encoding='utf-8').read().strip(),
long_description_content_type='text/markdown',
packages=find_packages(exclude=['examples', 'tests']),
py_modules=['merchantapi'],
install_requires=['requests', 'pycryptodome'],
zip_safe=False,
keywords='miva merchant json api sdk',
python_requires='>=3.6'
)