from setuptools import setup, find_packages
setup(
    name="myropay",
    version="1.0.0",
    description="MyRoPay Checkout Python SDK",
    long_description=open("README.md").read() if __import__('os').path.exists("README.md") else "",
    long_description_content_type="text/markdown",
    author="MyRoPay",
    url="https://myropay.com/docs/sdk/python",
    packages=find_packages(),
    python_requires=">=3.8",
    install_requires=[],   # zero dependencies — stdlib only
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Intended Audience :: Developers",
        "Topic :: Software Development :: Libraries",
    ],
)
