-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
55 lines (51 loc) · 1.55 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
[tool.poetry]
name = "universql"
version = "0.1"
description = ""
authors = ["Burak Kabakcı <emrekabakci@gmail.com>"]
readme = "README.md"
license = "Apache 2.0"
keywords = ["dbt", "server", "streamlit", "git", "refine", "data-app", "snowflake"]
documentation = "https://github.com/buremba/universql"
repository = "https://github.com/buremba/universql"
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
duckdb = "^1.1.3"
fastapi = "^0.111.0"
uvicorn = "^0.30.1"
snowflake-connector-python = {extras = ["pandas", "secure-local-storage"], version = "^3.12.0"}
# same with fakesnow
sqlglot = "~25.24.1"
fsspec = "^2024.6.1"
click = ">7"
pyiceberg = {extras = ["glue", "sql-sqlite"], version = "^0.7.1"}
#pyiceberg = { git = "https://github.com/buremba/iceberg-python", branch = "main", develop = true, extras = ["glue"] }
fakesnow = "^0.9.26"
humanize = "^4.10.0"
mangum = "^0.19.0"
pyarrow = "^17.0.0"
psutil = "^6.0.0"
# once we get rid of from pyiceberg.catalog.sql import SqlCatalog, remove it
sqlalchemy = "^2.0.35"
duckdb-engine = "^0.13.2"
# GCS
gcsfs = "^2024.6.1"
google-cloud-bigquery = "^3.25.0"
# AWS
s3fs = "^2024.6.1"
aws-cdk-lib = "^2.162.0"
sentry-sdk = {extras = ["fastapi"], version = "^2.17.0"}
aws-cdk-aws-codestar-alpha = "^2.162.1a0"
[tool.poetry.dev-dependencies]
pylint = ">=2.11.1"
pystray = "^0.19.5"
networkx = "^3.3"
streamlit = "^1.38.0"
st-link-analysis = "^0.3.0"
shandy-sqlfmt = "^0.17.0"
streamlit-ace = "^0.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
universql = 'universql.main:cli'