from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as fh:
    long_description = fh.read()

setup(
    name="optionmc",
    version="0.1.0",
    author="Sandy Herho",
    author_email="sandy.herho@email.ucr.edu",
    description="Monte Carlo Option Pricing with Educational Visualizations",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/sandyherho/optionmc",
    project_urls={
        "Bug Tracker": "https://github.com/sandyherho/optionmc/issues",
    },
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
        "Topic :: Scientific/Engineering :: Mathematics",
        "Topic :: Office/Business :: Financial",
    ],
    packages=find_packages(),
    include_package_data=True,
    python_requires=">=3.7",
    install_requires=[
        "numpy>=1.20.0",
        "scipy>=1.7.0",
        "matplotlib>=3.4.0",
        "seaborn>=0.11.0",
        "pandas>=1.3.0",
    ],
    entry_points={
        "console_scripts": [
            "optionmc=optionmc.cli:main",
        ],
    },
)
