forked from raspberrypi/picamera2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 978 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 978 Bytes
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
#! /usr/bin/env python3
# Copyright (c) 2021-2022 Raspberry Pi & Raspberry Pi Foundation
#
# SPDX-License-Identifier: BSD-2-Clause
from setuptools import setup, Extension
from os import getenv
with open("README.md") as readme:
long_description = readme.read()
setup(name='picamera2',
version='0.1.0',
description='picamera2 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',
},
packages=['picamera2', 'picamera2.encoders', 'picamera2.previews', 'picamera2.utils'],
python_requires='>=3.7',
licence='BSD 2-Clause License',
install_requires=['numpy', 'PyQt5', 'pyopengl', 'piexif', 'simplejpeg', 'pillow', 'v4l2-python3'])