1
0
mirror of https://github.com/raspberrypi/picamera2.git synced 2025-04-18 11:04:01 +03:00
picamera2/setup.py
David Plowman fb031cb49c Update setup.py and CHANGELOG.md for 0.3.25 release
Signed-off-by: David Plowman <david.plowman@raspberrypi.com>
2025-01-27 13:56:31 +00:00

42 lines
1.6 KiB
Python

#! /usr/bin/env python3
# Copyright (c) 2021-2022 Raspberry Pi & Raspberry Pi Foundation
#
# SPDX-License-Identifier: BSD-2-Clause
from setuptools import setup
with open("README.md") as readme:
long_description = readme.read()
setup(
name='picamera2',
version='0.3.25',
description='The libcamera-based Python interface to Raspberry Pi cameras, based on the original Picamera library',
long_description=long_description,
long_description_content_type='text/markdown',
author='Raspberry Pi & Raspberry Pi Foundation',
author_email='picamera2@raspberrypi.com',
url='https://github.com/RaspberryPi/picamera2',
project_urls={
'Bug Tracker': 'https://github.com/RaspberryPi/picamera2/issues',
},
license='BSD 2-Clause',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.9",
"Topic :: Multimedia :: Graphics :: Capture :: Digital Camera",
],
packages=['picamera2', 'picamera2.devices', 'picamera2.devices.hailo', 'picamera2.devices.imx500',
'picamera2.devices.imx708', 'picamera2.encoders', 'picamera2.outputs', 'picamera2.previews',
'picamera2.allocators'],
python_requires='>=3.9',
licence='BSD 2-Clause License',
install_requires=['numpy', 'PiDNG', 'piexif', 'pillow', 'simplejpeg', 'v4l2-python3',
'python-prctl', 'av', 'libarchive-c', 'tqdm',
'jsonschema'],
extras_require={"gui": ['pyopengl', 'PyQt5']})