-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
51 lines (44 loc) · 996 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
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "hub-utils"
version = "0.1.0"
description = ""
authors = ["pnadolny13 <[email protected]>"]
readme = "README.md"
packages = [{include = "hub_utils"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
typer = {extras = ["all"], version = "^0.15.1"}
ruamel-yaml = "^0.18.6"
yamllint = "^1.28.0"
boto3 = "^1.35.85"
requests = "^2.30.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.1.3"
tox = ">=4.13.0"
coverage = ">=7.6.1"
mypy = ">=1.8.0"
moto = ">=5.0.14"
typer-cli = ">=0.0.13"
ruff = ">=0.6.5"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = [
"F", # Pyflakes
"E", # pycodestyle (error)
"W", # pycodestyle (warning)
"I", # isort
"UP", # pyupgrade
"RUF", # Ruff-specific rules
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
hub-utils = 'hub_utils.main:app'
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests"
]