-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (37 loc) · 907 Bytes
/
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
[project]
name = "mann-kendall-automated"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "Gabriel Barbosa Soares", email = "[email protected]" },
]
dependencies = [
"streamlit>=1.38.0",
"xlrd>=2.0.1",
"xlsxwriter>=3.2.0",
"pandas>=2.2.2",
"scipy>=1.14.1",
"openpyxl>=3.1.5",
"plotly>=5.24.0",
]
readme = "README.md"
requires-python = ">= 3.11"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.3.2",
"pytest-cov>=5.0.0",
"ruff>=0.6.3",
"uv>=0.4.2",
]
[tool.rye.scripts]
req = "uv pip compile pyproject.toml -o requirements.txt"
stream = "streamlit run app.py"
test = "pytest src/ --cov=src --cache-clear"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/mann_kendall_automated"]