-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (80 loc) · 2.02 KB
/
pyproject.toml
File metadata and controls
93 lines (80 loc) · 2.02 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
[tool.poetry]
name = "simple_ado"
version = "5.1.1"
description = "A simple wrapper around the Azure DevOps REST API"
license = "MIT"
authors = [
"Dale Myers <dalemy@microsoft.com>",
]
readme = 'README.md'
repository = "https://github.com/Microsoft/simple_ado"
homepage = "https://github.com/Microsoft/simple_ado"
keywords = [
'azure',
'devops',
'ado',
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: MacOS X',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Software Development',
'Topic :: Utilities',
]
[tool.poetry.dependencies]
python = "^3.10"
deserialize = "^2.2.0"
requests = "^2.31.0"
tenacity = "^8.2.2"
azure-identity = "^1.25.1"
[tool.poetry.dev-dependencies]
black = "^25.9.0"
mypy = "^1.18.2"
pylint = "^3.3.9"
pytest = "^8.4.2"
pytest-cov = "^7.0.0"
pytest-mock = "^3.11.1"
python-dotenv = "^1.1.1"
PyYAML = "^6.0.3"
responses = "^0.23.1"
toml = "^0.10.2"
types-PyYAML = "^6.0.12.11"
types-requests = "^2.31.0.2"
types-toml = "^0.10.8.7"
[tool.poetry.group.dev.dependencies]
pyright = "^1.1.408"
[tool.mypy]
strict = true
ignore_missing_imports = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = [
"deserialize",
]
ignore_missing_imports = true
[tool.pyright]
typeCheckingMode = "strict"
reportUnknownParameterType = "error"
reportMissingParameterType = "error"
reportUnknownArgumentType = "error"
reportUnknownMemberType = "error"
reportUnknownVariableType = "error"
reportUntypedFunctionDecorator = "error"
reportUntypedClassDecorator = "error"
reportUntypedBaseClass = "error"
reportMissingTypeStubs = false
pythonVersion = "3.10"
pythonPlatform = "All"
[build-system]
requires = [
"poetry-core",
]
build-backend = "poetry.core.masonry.api"