forked from az-scout/az-scout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (90 loc) · 2.45 KB
/
Copy pathpyproject.toml
File metadata and controls
101 lines (90 loc) · 2.45 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[project]
name = "az-scout"
dynamic = ["version"]
description = "Azure SKU scout — explore availability zones, capacity, pricing, and plan VM deployments across subscriptions"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
authors = [
{ name = "Ludovic Rivallain" },
]
keywords = ["azure", "availability-zone", "mapping", "visualization"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: FastAPI",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Systems Administration",
]
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.34",
"jinja2>=3.1",
"azure-identity>=1.15",
"msal>=1.28",
"requests>=2.31",
"click>=8.1",
"mcp[cli]>=1.9",
"httpx>=0.28",
"rich>=13.9",
"prompt-toolkit>=3.0",
]
[project.urls]
Homepage = "https://docs.az-scout.com"
Repository = "https://github.com/az-scout/az-scout"
Issues = "https://github.com/az-scout/az-scout/issues"
[project.scripts]
az-scout = "az_scout.cli:cli"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
raw-options.version_scheme = "guess-next-dev"
raw-options.local_scheme = "no-local-version"
[tool.hatch.build.hooks.vcs]
version-file = "src/az_scout/_version.py"
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"httpx>=0.28",
"ruff>=0.8",
"mypy>=1.15",
"types-requests>=2.31",
"pre-commit>=4.0",
"pytest-playwright>=0.7",
"mkdocs-material>=9.5",
"mkdocs>=1.6,<2",
"neoteroi-mkdocs>=1.2.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short -m 'not e2e'"
markers = [
"e2e: End-to-end UI tests (Playwright)",
]
filterwarnings = [
"ignore::DeprecationWarning:websockets",
"ignore::DeprecationWarning:uvicorn",
]
[tool.ruff]
target-version = "py311"
line-length = 100
src = ["src"]
exclude = ["src/az_scout/_version.py"]
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP", "B", "SIM"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
ignore_missing_imports = true
[tool.hatch.build.targets.wheel]
packages = ["src/az_scout"]