File: setup.py

package info (click to toggle)
python-jq 1.10.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 200 kB
  • sloc: python: 439; makefile: 26; sh: 6
file content (30 lines) | stat: -rw-r--r-- 1,144 bytes parent folder | download
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
#!/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",
    ],
)