-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (42 loc) · 867 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
52
53
54
[project]
name = "mercado"
requires-python = ">=3.11"
[tool.poetry]
name = "mercado"
version = "0.2.1"
description = "All-In-One Development CLI Tools Multi-platform Marketplace"
authors = [
"YuviGold"
]
repository = "https://github.com/YuviGold/mercado"
readme = "README.md"
keywords = ["cli", "devops", "automation"]
[tool.poetry.dependencies]
python = ">=3.11"
humanize = "^4.11.0"
requests = "^2.32.3"
rich = "^13.9.4"
typer = "^0.13.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
cogapp = "^3.4.1"
ruff = "^0.7.3"
[tool.poetry.scripts]
mercado = "mercado.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
"N", # pep8-naming
# isort
"I001",
"I002",
]