1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#!/usr/bin/env python
from setuptools import setup, Extension
setup(
name='jq',
version='1.11.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.8',
license='BSD-2-Clause',
ext_modules=[Extension("jq", sources=["jq.pyx"], libraries=["jq", "onig"])],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'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 :: 3.14',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
],
)
|