-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
54 lines (47 loc) · 1.31 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
[tool.poetry]
name = "datasaurus"
version = "0.0.1dev2"
description = "Data Engineering framework based on Polars.rs"
repository = "https://www.github.com/surister/datasaurus"
authors = ["surister <surister98@gmail.com>"]
readme = "README.md"
license = "MIT"
keywords = ["python3", "data", "polars", "dataframes", "framework", 'data engineering']
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Topic :: Software Development :: Libraries"
]
[tool.poetry.dependencies]
python = "^3.8.1"
connectorx = [
{version = "^0.3.1", python="^3.8"},
{version= "^0.3.2a6", python="^3.11"}
]
pyarrow = "^12.0.0"
pandas = "^2.0.2"
sqlalchemy = "^2.0.15"
deltalake = "^0.10.0"
mkdocstrings-python = "^1.3.0"
polars = "^0.20.1"
[tool.poetry.group.azure.dependencies]
azure-storage-blob = "^12.16.0"
azure-identity = "^1.13.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
flake8 = "^6.0.0"
coverage = "^7.2.7"
mkdocs = "^1.5.2"
mkdocs-material = "^9.1.21"
mkdocstrings = "^0.22.0"
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.0"
black = "^23.7.0"
[tool.poetry.group.mysql.dependencies]
mysql-connector-python = "^8.0.33"
mysqlclient = "^2.1.1"
pymysql = "^1.0.3"
[tool.poetry.group.postgres.dependencies]
psycopg2 = "^2.9.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"