-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.71 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
[project]
name = "gcpath"
version = "0.10.0"
description = "A CLI and Python library for querying Google Cloud Platform resource hierarchy paths."
readme = "README.md"
authors = [
{ name = "Levente", email = "leventetsk@proton.me" }
]
keywords = ["gcp", "google-cloud", "hierarchy", "folders", "projects"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.12"
dependencies = [
"google-cloud-asset>=4.1.0",
"google-cloud-resource-manager>=1.15.0",
"pyyaml>=6.0",
"rich>=14.2.0",
"typer>=0.20.1",
]
[project.urls]
Homepage = "https://github.com/tardigrde/gcpath"
Repository = "https://github.com/tardigrde/gcpath"
Issues = "https://github.com/tardigrde/gcpath/issues"
[project.scripts]
gcpath = "gcpath.cli:run"
[dependency-groups]
dev = [
"mypy>=1.19.1",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.14.10",
"types-pyyaml>=6.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/gcpath"]
[tool.semantic_release]
major_on_zero = false
allow_zero_version = true
version_toml = ["pyproject.toml:project.version"]
branch = "main"
upload_to_pypi = false
upload_to_release = true
build_command = "uv build"
commit_message = "chore(release): {version}"
[tool.semantic_release.changelog]
changelog_file = "CHANGELOG.md"
[tool.semantic_release.branches.main]
match = "main"
prerelease = false