-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
34 lines (30 loc) · 1.11 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
[tool.ruff]
fixable = ["A", "B", "C", "D", "E", "F", "G", "I", "N", "Q", "S", "T", "W", "ANN", "ARG", "BLE", "COM", "DJ", "DTZ", "EM", "ERA", "EXE", "FBT", "ICN", "INP", "ISC", "NPY", "PD", "PGH", "PIE", "PL", "PT", "PTH", "PYI", "RET", "RSE", "RUF", "SIM", "SLF", "TCH", "TID", "TRY", "UP", "YTT"]
unfixable = []
line-length = 120
[tool.poetry]
name = "OpsCenter"
version = "1.3.0"
description = "Free & Open Snowflake-Native Cost Management"
authors = ["Jacques Nadeau <[email protected]>", "Ryan Murray <[email protected]>", "Josh Elser <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "~3.8"
plotly = "~5.11"
streamlit = "~1.22"
snowflake-snowpark-python = { version = "^1.5.1", extras = ["pandas"] }
pydantic = "==1.10.8"
pytz = "==2023.3"
[tool.poetry.group.dev.dependencies]
watchdog = "^3.0.0"
pytest = "^7.4.1"
snowflake-connector-python = "^3.1.1"
[tool.pytest.ini_options]
filterwarnings = [
# Suppress the deprecation warnings that are coming from Snowflake and Snowpark dependencies
"ignore::DeprecationWarning",
]
markers = [
"smoke: tests basic functionality",
]