-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 820 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 820 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
28
29
30
31
32
33
34
35
[tool.poetry]
name = "LCDRP"
version = "1.0.0"
description = "Esta librería es para el manejo de pantallas LCD en la Raspberry Pi"
authors = ["Esteban, herrerazanecheverry@gmail.com"]
license = "LGPL"
readme = "README.md"
packages = [
{ include = "RPiLCD", from = "src" }
]
keywords = ["raspberrypi", "lcd", "i2c", "display"]
classifiers = [
"Programming Language :: Python :: 3"
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
smbus = ">=1.1.post2,<2.0"
rpi-gpio = ">=0.7.1,<0.8.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0"
pytest-cov = "^4.0"
setuptools = "<80.9.0"
twine = "^6.1.0"
[tool.poetry.scripts]
test = "pytest:main"
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools >= 77.0.3"]
build-backend = "poetry.core.masonry.api"