-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (40 loc) · 937 Bytes
/
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
[project]
name = "source-faker"
version = "0.1.0"
description = ""
authors = [
{name = "geekwhocodes",email = "ganeshraskar@outlook.com"}
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pyspark (==4.0.0.dev2)",
"faker (>=36.1.1,<37.0.0)",
"ipykernel (>=6.29.5,<7.0.0)"
]
[tool.poetry]
packages = [{include = "source_faker", from = "src"}]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
black = "^25.1.0"
isort = "^6.0.0"
flake8 = "^7.1.2"
mypy = "^1.15.0"
pre-commit = "^4.1.0"
pyarrow = "^19.0.1"
grpcio = "^1.70.0"
grpcio-status = "^1.60.1"
pandas = "^2.2.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py39']
[tool.isort]
profile = "black"
[tool.mypy]
strict = true
ignore_missing_imports = true
[tool.flake8]
max-line-length = 88