-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
37 lines (35 loc) · 1.07 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
37
[tool.poetry]
name = "dbt-athena2"
version = "1.3.0"
description = "Athena adapter for dbt platform"
authors = ["Duc Nguyen"]
readme = "README.md"
packages = [
{ include = "dbt"},
]
repository = "https://github.com/vdn-tools/dbt-athena2"
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = ">=3.7.2,<4.0"
dbt-core = "1.0.*"
pyathena = "2.4.1"
boto3 = "1.20.47"
tenacity = "8.0.1"
[tool.semantic_release]
version_variable = [
"dbt/adapters/athena/__version__.py:version",
"pyproject.toml:version"
]
branch = "main"
upload_to_pypi = true
upload_to_release = true
build_command = "pip install poetry && poetry config installer.modern-installation false && cat requirements.txt|xargs poetry add && poetry build"