-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (60 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (60 loc) · 1.7 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "local-storage-utils"
version = "0.1.1"
description = "Utilities for analyzing and managing local Datastore/Firestore (Datastore mode) data"
authors = [
{ name = "andres", email = "isisosirishorus@hotmail.com" },
]
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
keywords = ["google-cloud-datastore", "firestore", "emulator", "cleanup", "analysis"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"google-cloud-datastore>=2.19.0",
"PyYAML>=6.0.1",
"typer>=0.12.3",
]
[project.optional-dependencies]
rich = ["rich>=13.7.0"]
dev = [
"pytest>=7.0",
"tqdm>=4.0",
"ruff>=0.6",
"black>=22.0",
]
[project.scripts]
lsu = "cli:app"
local-storage-utils = "cli:app"
[tool.setuptools.packages.find]
where = ["."]
include = ["commands*"]
[tool.setuptools]
py-modules = ["cli"]
[tool.black]
line-length = 100
[tool.ruff]
line-length = 100
[tool.semantic_release]
version_variable = "pyproject.toml:version"
branch = "main"
upload_to_pypi = true
dist_path = "dist"
build_command = "python -m build"
commit_message = "chore(release): {version} [skip ci]"
changelog_sections = "feature,fix,perf,refactor,docs,style,build,ci,chore"
[tool.semantic_release.remote]
name = "origin"
repo_url = "https://github.com/khnumdev/local-storage-utils"