-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 866 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 866 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
[project]
name = "snowflake-utils"
version = "1.26.0"
description = ""
authors = [
{ name = "Eli Yarson", email = "eli.yarsonnabhan@remote.com" },
{ name = "Paolo Quadri", email = "paolo.quadri@remote.com" },
]
requires-python = ">=3.10,<4.0"
readme = "README.md"
dependencies = [
"snowflake-connector-python[secure-local-storage]>=4.2.0",
"pydantic-settings>=2.2.1,<3",
]
[dependency-groups]
dev = [
"pytest>=8.1.1,<9",
"ruff>=0.11.2,<0.12",
"snowflake-vcrpy",
"urllib3<2.0",
]
[tool.uv]
[tool.uv.sources]
snowflake-vcrpy = { git = "https://github.com/Snowflake-Labs/snowflake-vcrpy.git", rev = "eb04664d233f53958deb316eb4968ff842424337" }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
[tool.ruff]
lint.extend-select = ["I"]