-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 848 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 848 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
38
39
40
41
42
43
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agile-mc"
version = "0.1.2"
description = "AgileForecasting — Monte Carlo forecasting for Agile teams using Azure DevOps data"
requires-python = ">=3.12"
dependencies = [
"streamlit>=1.40",
"pandas>=2.1",
"numpy>=1.26",
"requests>=2.31",
"plotly>=5.18",
"kaleido>=0.2.1",
"cryptography>=42.0.0",
"python-dateutil>=2.9",
"keyring>=24.0",
]
[project.optional-dependencies]
dev = [
"pip-tools>=7.0",
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.4",
]
[tool.hatch.build.targets.wheel]
packages = ["src/agile_mc"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501"]