-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (62 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
73 lines (62 loc) · 1.5 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools>=68", "setuptools-scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kroget"
description = "Kroger shopping CLI"
readme = "README.md"
requires-python = ">=3.12"
authors = [{ name = "Kroget Contributors" }]
license = { text = "MIT" }
keywords = ["kroger", "cli"]
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"typer[all]",
"rich",
"httpx",
"pydantic>=2",
"python-dotenv",
"textual",
]
[project.optional-dependencies]
dev = [
"build",
"commitizen",
"pytest",
"pytest-asyncio",
"ruff",
]
[project.scripts]
kroget = "kroget.cli:app"
[project.urls]
Repository = "https://github.com/VargasDevelopment/kroget"
[tool.setuptools.packages.find]
where = ["."]
include = ["kroget*"]
[tool.setuptools_scm]
tag_regex = "^v(?P<version>\\d+\\.\\d+\\.\\d+)$"
git_describe_command = "git describe --dirty --tags --long --match v[0-9]*"
local_scheme = "no-local-version"
version_scheme = "release-branch-semver"
[tool.commitizen]
name = "cz_conventional_commits"
version_provider="scm"
tag_format = "v$version"
version_scheme = "semver"
update_changelog_on_bump = true
changelog_file = "CHANGELOG.md"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "SIM", "RUF"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
markers = [
"integration: marks tests requiring live Kroger creds",
]