-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (38 loc) · 872 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
[tool.poetry]
name = "data-engineering-sandbox"
version = "0.1.0"
description = ""
authors = ["Laurans"]
readme = "README.md"
packages = [{include = "data_engineering_sandbox", from = "src"}]
[tool.poetry.dependencies]
python = "^3.11"
kaggle = "^1.5.13"
sqlalchemy = "^2.0.13"
polars = "^0.17.13"
pandas = "^2.0.1"
psycopg2 = "^2.9.6"
loguru = "^0.7.0"
click = "^8.1.3"
pymongo = "^4.4.0"
attrs = "^23.1.0"
tqdm = "^4.66.1"
ipykernel = "^6.25.1"
jupysql = "^0.10.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.265"
black = "^23.3.0"
pytest = "^7.3.1"
isort = "^5.12.0"
flake8 = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
[tool.ruff]
line-length = 88
[tool.isort]
profile = "black"
[tool.poetry.scripts]
load_sample_data = 'data_engineering_sandbox.scripts.load_sample_data:cli'