forked from crflynn/pbspark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (67 loc) · 1.5 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
69
70
71
72
[tool.poetry]
name = "pbspark"
version = "0.7.0"
description = "Convert between protobuf messages and pyspark dataframes"
authors = ["flynn <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/crflynn/pbspark"
repository = "https://github.com/crflynn/pbspark"
documentation = "https://github.com/crflynn/pbspark"
include = [
{ path="CHANGELOG.md", format="sdist" },
{ path="LICENSE.txt", format="sdist" },
{ path="README.md", format="sdist" },
]
keywords = ["spark", "protobuf", "pyspark"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Database",
]
[tool.poetry.dependencies]
python = "^3.7"
pyspark = ">=3.2.0"
protobuf = ">=3.20.0"
[tool.poetry.dev-dependencies]
black = "^21.11b1"
isort = "^5.10.1"
pytest = "^6.2.5"
mypy-protobuf = "^3.0.0"
types-protobuf = "^3.18.2"
click = "8.0.4" # https://github.com/psf/black/issues/2964
mypy = "^0.942"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.circleci
| \.git
| \.github
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''
[tool.isort]
force_single_line = true
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88