"""
Setup script for Link Checker Package
"""

from setuptools import setup, find_packages

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

setup(
    name="link-checker-package",
    version="1.0.0",
    author="Santhosh Kasturi",
    author_email="santhoshkasturi7@gmail.com",
    description="A comprehensive package for checking link status across different platforms",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://gitlab.com/axghouse/link_checker",
    packages=find_packages(),
    classifiers=[
        "Development Status :: 4 - Beta",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.7",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
    ],
    python_requires=">=3.7",
    install_requires=[
        "psycopg2-binary>=2.9.0",
        "beautifulsoup4>=4.9.0",
        "selenium>=4.0.0",
        "playwright>=1.20.0",
        "requests>=2.25.0",
        "colorama>=0.4.0",
        "urllib3>=1.26.0",
    ],
    extras_require={
        "dev": [
            "pytest>=6.0.0",
            "pytest-cov>=2.10.0",
            "black>=21.0.0",
            "flake8>=3.8.0",
            "mypy>=0.800",
        ],
    },
    entry_points={
        "console_scripts": [
            "link-checker=link_checker_package.cli:main",
        ],
    },
    include_package_data=True,
    package_data={
        "link_checker_package": ["*.json", "*.yaml", "*.yml"],
    },
)
