forked from guysoft/CustomPiOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (21 loc) · 702 Bytes
/
pyproject.toml
File metadata and controls
25 lines (21 loc) · 702 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
[tool.poetry]
name = "custompios"
version = "2.0.0"
description = "A Raspberry Pi and other ARM devices distribution builder. CustomPiOS opens an already existing image, modifies it and repackages the image ready to ship."
authors = ["Guy Sheffer <[email protected]>"]
license = "GPLv3"
readme = "README.rst"
packages = [
# { include = "src/*" },
{ include = "custompios_core", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.11"
GitPython = "^3.1.41"
[tool.poetry.group.dev.dependencies]
types-PyYAML = "^6.0.12.12"
[tool.poetry.scripts]
custompios_build = 'custompios_core.multi_build:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"