-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.1 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
[tool.poetry]
name = "snowdev"
version = "0.2.0"
description = "snowdev: DevOps toolkit for Snowflake, facilitating seamless deployment of UDFs, stored procedures, and Streamlit apps using Snowpark's capabilities right from your local environment."
authors = ["kaarthik <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/kaarthik108/snowdev"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10"
]
[tool.poetry.dependencies]
python = ">=3.10.0,<3.11.0"
pydantic = "1.10.9"
termcolor = "2.3.0"
"snowflake-snowpark-python" = { version = "1.6.1", extras = ["pandas"] }
snowflake-ml-python = "1.0.5"
pyyaml = "^6.0.1"
toml = "^0.10.2"
openai = "^0.27.8"
langchain = "0.0.265"
chromadb = "0.4.6"
tiktoken = "0.4.0"
unstructured = "0.7.12"
[tool.poetry.dev-dependencies]
black = "^22.10.0"
[tool.poetry.scripts]
snowdev = "snowdev.cli.main:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[build]
include = ["snowdev/**/*"]