-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1001 Bytes
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1001 Bytes
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 = "hip_data_tools"
version = "1.0"
readme = "README.md"
description = "Common Python tools and utilities for data engineering."
authors = ["Hipages Data Team <[email protected]>"]
license = "OSL"
[tool.poetry.dependencies]
python = ">=3.11,<4"
Cython = "^3.0.10"
lxml = "^4.9.2"
cassandra-driver = "^3.29.1"
pandas = "^2.1.4"
retrying = "^1.3.4"
confluent-kafka = "^2.0.2"
boto3 = "^1.26.107"
botocore = "^1.29.107"
joblib = "^1.2.0"
arrow = "^1.2.3"
oauth2client = "^4.1.3"
gspread = "^5.8.0"
GitPython = "^3.1.31"
stringcase = "^1.2.0"
mysqlclient = "^2.2.4"
pyarrow = "^16.1.0"
fastparquet = "^2023.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.2"
sphinx = "^6.1.3"
freezegun = "^1.2.2"
moto = "^4.1.6"
mocker = "^1.1.1"
testcontainers = "^3.5.3"
pytest-mock = "^3.7.0"
pytest-stub = "^1.1.0"
mock = "^4.0.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
packages = [
{ include = "hip_data_tools" }
]