-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (64 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
70 lines (64 loc) · 1.78 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
[project]
name = "az-ai-devcontainer"
version = "0.1.0"
description = "DevContainer environment for AI experimentation"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.13"
authors = [
{ name = "Dominique Broeglin", email = "dominique.broeglin@microsoft.com" }
]
keywords = ["azure", "ai", "devcontainer", "jupyter", "foundry"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"python-dotenv>=1.0.1",
"ipykernel>=6.29.5",
"ipywidgets>=8.1.5",
"azure-ai-projects>=2.0.0",
"azure-identity>=1.20.0",
"openai>=1.63.0",
"ruamel-yaml>=0.19.1",
"azure-mgmt-cognitiveservices>=14.1.0",
"typer>=0.24.1",
"cryptography>=46.0.6",
]
[project.urls]
Homepage = "https://github.com/Azure-Samples/az-ai-devcontainer"
Repository = "https://github.com/Azure-Samples/az-ai-devcontainer"
Issues = "https://github.com/Azure-Samples/az-ai-devcontainer/issues"
Documentation = "https://github.com/Azure-Samples/az-ai-devcontainer#readme"
[project.optional-dependencies]
dev = [
"ruff>=0.8.0",
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
]
[tool.ruff]
line-length = 88
target-version = "py313"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
]
ignore = [
"E501", # Line too long (handled by formatter)
]
[tool.ruff.lint.isort]
known-first-party = ["az-ai-devcontainer"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"