-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (33 loc) · 1.09 KB
/
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
# PyPI name uses dashes not underscore because google IAM role doesnt allow underscore
# Couldn't get it completely consistent though:
#
# * PyPI name: google-ssl
# * Tool CLI command: google-ssl
# * Google IAM service account (doesnt allow underscore): google-ssl-rotator
# * Google Cloud function (accepts both underscore and dashes): google-ssl-rotator
#
# However, the package name is underscored because importing package requires it.
#
# import google_ssl
#
[tool.poetry]
name = "google-ssl"
version = "0.1.0"
description = "Google Cloud Function SSL Cert Rotator tool"
authors = ["Tung Nguyen <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/boltops-tools/google-ssl"
packages = [{include = "google_ssl"}]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = "^3.11"
functions-framework = "^3"
google-cloud-compute = "^1"
google-cloud-storage = "^2"
google-api-python-client = "^2" # for googleapiclient
click = "^8"
[tool.poetry.scripts]
google-ssl = 'google_ssl.cli:cli'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"