-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.26 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (41 loc) · 1.26 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "azuredevops-tools"
version = "0.3.0"
description = "Comprehensive Azure DevOps Tools for Model Context Protocol (MCP) integration including Git repositories, pull requests, builds, changesets, and approval workflows"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "Muhammad Afzaal", email = "mo@thedataguy.pro"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"azure-devops>=7.1.0b4",
"mcp[cli]>=1.9.2",
"python-dotenv>=1.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"black>=22.0",
"isort>=5.0",
"flake8>=4.0",
]
[project.scripts]
azuredevops-tools = "azuredevops_tools.main:main"
[project.urls]
Homepage = "https://github.com/mafzaal/azuredevops-tools"
Repository = "https://github.com/mafzaal/azuredevops-tools"
Issues = "https://github.com/mafzaal/azuredevops-tools/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/azuredevops_tools"]