mirror of
https://github.com/ocrmypdf/OCRmyPDF.git
synced 2026-01-12 07:10:19 +00:00
11 lines
210 B
Python
11 lines
210 B
Python
# SPDX-FileCopyrightText: 2022 James R. Barlow
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
"""setup.py to support older setuptools and pip."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from setuptools import setup
|
|
|
|
setup()
|