/ pyproject.toml
pyproject.toml
1 # SPDX-FileCopyrightText: 2022 Alec Delaney for Adafruit Industries 2 # 3 # SPDX-License-Identifier: MIT 4 5 [build-system] 6 requires = [ 7 "setuptools", 8 "wheel", 9 "setuptools-scm", 10 ] 11 12 [project] 13 name = "adafruit-circuitpython-ov5640" 14 description = "CircuitPython driver for OV5640 Camera" 15 version = "0.0.0+auto.0" 16 readme = "README.rst" 17 authors = [ 18 {name = "Adafruit Industries", email = "circuitpython@adafruit.com"} 19 ] 20 urls = {Homepage = "https://github.com/adafruit/Adafruit_CircuitPython_OV5640"} 21 keywords = [ 22 "adafruit", 23 "ov5640", 24 "camera", 25 "breakout", 26 "hardware", 27 "micropythoncircuitpython", 28 ] 29 license = {text = "MIT"} 30 classifiers = [ 31 "Intended Audience :: Developers", 32 "Topic :: Software Development :: Libraries", 33 "Topic :: Software Development :: Embedded Systems", 34 "Topic :: System :: Hardware", 35 "License :: OSI Approved :: MIT License", 36 "Programming Language :: Python :: 3", 37 ] 38 dynamic = ["dependencies", "optional-dependencies"] 39 40 [tool.setuptools] 41 packages = ["adafruit_ov5640"] 42 43 [tool.setuptools.dynamic] 44 dependencies = {file = ["requirements.txt"]} 45 optional-dependencies = {optional = {file = ["optional_requirements.txt"]}}