-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (45 loc) · 1.27 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "databricks-aws-utils"
version = "1.5.1"
description = "Databricks AWS Utils"
license = "Proprietary"
authors = [ "Lucas Vieira <[email protected]>" ]
maintainers = [ "Lucas Vieira <[email protected]>" ]
readme = "README.md"
repository = "https://github.com/lucasvieirasilva/databricks-aws-utils"
[[tool.poetry.packages]]
include = "databricks_aws_utils"
[tool.poetry.dependencies]
python = ">=3.8.1,<=3.11"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.1.0"
autopep8 = "^2.0.4"
delta-spark = "^2.3.0"
pyspark = "3.3.2"
boto3 = "1.20.5"
python-semantic-release = "^8.0.8"
pre-commit = "^3.4.0"
commitizen = "^3.8.0"
[build-system]
requires = [ "poetry-core" ]
build-backend = "poetry.core.masonry.api"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
src_paths = ["databricks_aws_utils"]
py_version = 37
skip_gitignore = true
[tool.semantic_release]
version_toml = [
"pyproject.toml:tool.poetry.version"
]
major_on_zero = false
branch = "main"
upload_to_release = true
build_command = "pip install poetry && poetry build"
commit_message = "chore(release): {version} [skip ci]"
tag_format = "v{version}"