forked from Datatamer/tamr-cloud-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 726 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 726 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
[tool.poetry]
name = "tamr_cloud_sdk"
version = "0.dev"
description = "A package that facilitates the use of Tamr Cloud APIs in python"
authors = ["Tamr Inc."]
readme = "README.md"
packages = [
{ include = "tamr_sdk" },
{ include = "tamr" },
{ include = "protoc_gen_openapiv2" },
]
[tool.poetry.dependencies]
python = "^3.8"
google-api-python-client = "2.126.0"
grpcio = "1.62.2"
[tool.poetry.group.dev.dependencies]
ruff = "0.4.4"
[tool.semantic_release]
version_variable = [
"pyproject.toml:version",
]
branch = "main"
upload_to_pypi = false
upload_to_release = true
build_command = "pip install poetry && poetry build"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"