-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
68 lines (59 loc) · 1.55 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[tool.poetry]
name = "blackbricks"
version = "2.2.0"
description = "Black for Databricks notebooks"
authors = ["Bendik Samseth <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/inspera/blackbricks"
keywords = [
"automation",
"formatter",
"black",
"sql",
"yapf",
"autopep8",
"pyfmt",
"gofmt",
"rustfmt",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Quality Assurance",
]
[tool.poetry.scripts]
blackbricks = "blackbricks.cli:app"
[tool.poetry.dependencies]
python = "^3.8"
black = "^24.4.2"
sqlparse = "^0.4.2"
databricks-cli = "^0.17.3"
typer = { extras = ["all"], version = ">=0.6.1,<0.8" }
[tool.poetry.dev-dependencies]
pytest = "^7.1.3"
isort = "^5.10.1"
flake8 = "^3.9.2"
commitizen = "^2.32.2"
mypy = "^0.971"
[tool.commitizen]
name = "cz_conventional_commits"
version = "2.2.0"
tag_format = "$version"
version_files = ["blackbricks/__init__.py:version", "pyproject.toml:version"]
[tool.isort]
profile = "black"
[tool.mypy]
strict = true
mypy_path = "type_stubs"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"