-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
48 lines (40 loc) · 1.11 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
[tool.poetry]
name = "sparkdantic"
version = "1.4.0"
description = "A pydantic -> spark schema library"
authors = ["Mitchell Lisle <[email protected]>"]
readme = "README.md"
packages = [{include = "sparkdantic", from = "src"}]
[tool.poetry.dependencies]
python = "^3.9,<4.0.0"
pydantic = "^2.1.1"
pyspark = "^3.3.0"
jmespath = "^1.0.1"
pyparsing = "^3.1.1"
[tool.poetry.group.dev.dependencies]
bumpversion = "^0.6.0"
twine = ">=4.0.2,<7.0.0"
flake8 = ">=6,<8"
dlint = ">=0.14,<0.17"
mypy = "^1.1.1"
pre-commit = ">=3.2.1,<5.0.0"
setuptools = ">=68,<76"
flake8-bugbear = ">=23.3.23,<25.0.0"
pep8-naming = ">=0.13.3,<0.15.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.4.2"
mkdocs-material = "^9.1.4"
mkdocs-gen-files = ">=0.4,<0.6"
mkdocs-literate-nav = "^0.6.0"
mkdocstrings = {extras = ["python"], version = ">=0.20,<0.28"}
mkautodoc = "^0.2.0"
pymdown-extensions = "^10.0.1"
[tool.poetry.group.test.dependencies]
pytest = ">=7.2.2,<9.0.0"
pytest-dotenv = "^0.5.2"
pytest-cov = ">=4,<7"
hypothesis = "^6.82.0"
faker = ">=26.0.0,<34.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"