#!/usr/bin/env python
from setuptools import setup, Extension


setup(
    name="jq",
    version="1.10.0",
    description="jq is a lightweight and flexible JSON processor.",
    long_description=open("README.rst").read(),
    author="Michael Williamson",
    url="https://github.com/mwilliamson/jq.py",
    python_requires=">=3.5",
    license="BSD 2-Clause",
    ext_modules=[Extension("jq", sources=["jq.pyx"], libraries=["jq", "onig"])],
    classifiers=[
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: BSD License",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
        "Programming Language :: Python :: 3.12",
        "Programming Language :: Python :: 3.13",
        "Programming Language :: Python :: Implementation :: PyPy",
        "Programming Language :: Python :: Implementation :: CPython",
    ],
)
