#!/usr/bin/env python3 from setuptools import setup, find_packages setup( name='simpay-api', version='3.0.1', description='Python wrapper for Simpay API', long_description=open('README.md', encoding='utf-8').read(), long_description_content_type="text/markdown", author='Rafał Więcek', author_email="kontakt@simpay.pl", url='https://github.com/SimPaypl/SimPay-API-Python', python_requires='>3.0', packages=find_packages(exclude=['tests*', 'examples*']), test_suite='tests', include_package_data=True, install_requires=['requests>=2.26.0', 'pydantic>=1.10.7'], extras_require={'docs': ['sphinx>=7.0.1']}, )