import os
import re
from setuptools import setup, find_packages


PATH = os.path.abspath(os.path.dirname(__file__))


def read_file(filepath):
    with open(filepath, "r") as fd:
        return fd.read()


def find_version():
    version_path = os.path.join(PATH, "lunr", "__init__.py")
    contents = read_file(version_path)
    version_string = contents[contents.index("__VERSION__") :]
    try:
        return re.match(r'.*__VERSION__ = [\'"]([\d\w\.]+)[\'"]', version_string).group(
            1
        )
    except AttributeError:
        raise RuntimeError("Unable to find version string.")


setup(
    name="lunr",
    version=find_version(),
    url="https://github.com/yeraydiazdiaz/lunr.py",
    project_urls={"Documentation": "https://lunr.readthedocs.io"},
    license="MIT",
    description="A Python implementation of Lunr.js",
    long_description=read_file("README.md"),
    long_description_content_type="text/markdown",
    author="Yeray Diaz Diaz",
    author_email="yeraydiazdiaz@gmail.com",
    packages=find_packages(exclude=("tests",)),
    include_package_data=True,
    zip_safe=False,
    python_requires=">=3.6",
    install_requires=[],
    extras_require={
        "languages": ["nltk"]
    },
    keywords="lunr full text search",
    classifiers=[
        "Development Status :: 4 - Beta",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.6",
        "Programming Language :: Python :: 3.7",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: Implementation :: CPython",
        "Programming Language :: Python :: Implementation :: PyPy",
        "Topic :: Text Processing",
    ],
)
