-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 748 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 748 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
33
34
35
36
[tool.poetry]
name = "sparkml-base-classes"
version = "0.1.6"
description = "SparkML base classes for Transformers and Estimators"
authors = ["Rodrigo Agundez <[email protected]>"]
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-spark = "^0.6.0"
chispa = "^0.9.2"
black = "^22.10.0"
pylint = "^2.15.8"
numpy = "^1.23.5"
pyspark = "^3.3.1"
toml = "^0.10.2"
twine = "^4.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
[tool.pylint.messages_control]
max-line-length = 100
ignored-modules = "pyspark"
disable = [
"unused-argument",
"too-few-public-methods",
"missing-module-docstring",
]