-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (59 loc) · 1.33 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
[tool.poetry]
name = "nyc-taxi-data-pipeline"
version = "0.1.0"
description = ""
authors = ["tnhgiang <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.11, <3.13"
tqdm = "^4.67.1"
polars = "^1.17.1"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
flake8 = "^7.1.1"
isort = "^5.13.2"
pre-commit = "^4.0.1"
dagster = "1.9.3"
dagit = "1.9.3"
dagster-postgres = "0.25.3"
dagster-pyspark = "0.25.3"
polars = "1.17.1"
pyarrow = "18.1.0"
minio = "7.2.12"
sqlalchemy = "2.0.36"
cryptography = "44.0.0"
psycopg2-binary = "2.9.10"
pymysql = "1.1.1"
pytest = "8.3.4"
pyspark = "3.5.4"
geopandas = "1.0.1"
clickhouse-driver = "0.2.9"
dagster-dbt = "0.25.3"
dbt-clickhouse = "1.8.7"
python-dateutil = "2.9.0"
ydata-profiling = "4.12.1"
great-expectations = "0.18.22"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
dagster = "1.9.3"
pytest = "^8.3.4"
minio = "7.2.12"
dagster-pyspark = "0.25.3"
polars = "1.17.1"
geopandas = "1.0.1"
dagster-dbt = "0.25.3"
great-expectations = "0.18.22"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
src_paths = ["pipeline"]
[tool.pytest.ini_options]
testpaths = ["pipeline/pipeline_test"]
[tool.codespell]
skip = "*.svg,*.json,*.lock"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"