-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (33 loc) · 934 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
38
39
40
41
[tool.poetry]
name = "image-factory"
version = "0.1.0"
description = "The official image builder project by Omnivector Solutions"
authors = ["matheushent <me@mtosta.dev>, jamesbeedy <james@omnivector.solutions>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.11"
craft-providers = "^1.14.1"
typer = "^0.9.0"
rich = "^13.5.2"
[tool.poetry.dev-dependencies]
ruff = "^0.0.282"
mypy = "^1.4.1"
black = "^24.3.0"
[tool.poetry.group.dev.dependencies]
types-pyyaml = "^6.0.12.11"
[tool.black]
line-length = 110
src = ["image_factory"]
[tool.ruff]
line-length = 110
select = ["E", "W", "F", "C", "N", "D", "I001"]
extend-exclude = ["__pycache__", "*.egg_info", "__init__.py"]
ignore = ["D203", "D212"]
[tool.mypy]
follow_imports = "silent"
ignore_missing_imports = true
[tool.poetry.scripts]
image-factory = "image_factory.main:app"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"