-
Notifications
You must be signed in to change notification settings - Fork 67
/
pyproject.toml
49 lines (44 loc) · 1.42 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
[tool.poetry]
name = "semantic-model-generator"
version = "1.0.0"
description = "Curate a Semantic Model for Snowflake Cortex Analyst"
authors = ["Jonathan Hilgart <[email protected]>", "Nipun Sehrawat <[email protected]>", "Renee Huang <[email protected]>", "Nicole Limtiaco <[email protected]>"]
license = "Apache Software License; BSD License"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.9.7 || >3.9.7,<3.12"
pandas = "^2.0.1"
loguru = "^0.7.2"
snowflake-connector-python = { extras = ["secure-local-storage", "pandas"], version = "^3.11.0" }
protobuf = "5.26.1"
pydantic = "2.8.2"
PyYAML = "^6.0.1"
"ruamel.yaml" = "0.17.21"
tqdm = "^4.66.5"
pyarrow = "14.0.2"
sqlglot = "25.10.0"
strictyaml = "^1.7.3"
streamlit = "1.36.0"
streamlit-extras = "0.4.0"
numpy = "^1.26.4"
python-dotenv = "^1.0.1"
urllib3 = "^1.26.19"
requests = "^2.32.3"
snowflake-snowpark-python = "1.18.0"
# Optional dependencies for functionality such as partner semantic model support.
looker-sdk = { version = "^24.14.0", optional = true }
[tool.poetry.group.dev.dependencies]
mypy = "^1.9.0"
black = "^24.3.0"
isort = "^5.13.2"
flake8 = "^7.0.0"
pytest = "^8.1.1"
types-pyyaml = "^6.0.12.20240311"
types-protobuf = "^4.24.0.20240311"
pip-licenses = "^4.4.0"
grpcio-tools = "1.64.1"
[tool.poetry.extras]
looker = ["looker-sdk"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"