-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 918 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (31 loc) · 918 Bytes
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
[project]
name = "pygcloud"
version = "0.0.115"
authors = [
{ name="Jean-Lou Dupont", email="jld@jldupont.com" },
]
description = "Python helper around gcloud"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
]
[project.urls]
Repository = "https://github.com/jldupont/pygcloud"
Pypi = "https://pypi.org/project/pygcloud/"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.entry-points."pygcloud.events"]
# Deployer related
start_deploy = "pygcloud.events:dummy"
end_deploy = "pygcloud.events:dummy"
before_deploy = "pygcloud.events:dummy"
after_deploy = "pygcloud.events:dummy"
# Policer related
start_policer = "pygcloud.events:dummy"
end_policer = "pygcloud.events:dummy"
before_police = "pygcloud.events:dummy"
after_police = "pygcloud.events:dummy"
# Linker related
end_linker = "pygcloud.events:dummy"