-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 1009 Bytes
/
pyproject.toml
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
31
32
33
34
35
36
37
[build-system]
requires = ['poetry-core']
build-backend = 'poetry.core.masonry.api'
[tool.poetry]
name = 'raspberry-py'
version = "0.7.0a0"
description = 'A Python/REST interface for GPIO circuits running on the Raspberry Pi'
readme = 'README.md'
authors = [
'Matthew Gerber <[email protected]>'
]
packages = [
{ include = 'raspberry_py', from = 'src'}
]
repository = 'https://github.com/MatthewGerber/raspberry-py'
[tool.poetry.dependencies]
python = '>=3.10,<3.13'
numpy = '~=1.26'
smbus2 = '~=0.4'
Flask = '~=3.0'
Flask-Cors = '~=4.0'
opencv-python = '~=4.8'
rpi-ws281x = '~=5.0'
pyserial = "^3.5"
# raspberry pi os removed sysfs gpio interface with rpi 5. prior to this, it was possible to use the RPi.GPIO package.
# the rpi-lgpio package might work with the older pi os, but it's untested.
rpi-lgpio = "^0.6"
[tool.poetry.group.dev.dependencies]
mypy = '~=1.10'
flake8 = '~=7.0'
[tool.poetry.scripts]
write_component_files = 'raspberry_py.rest.application:write_component_files_cli'