.pyproject-toml•790 B
[project]
name = "cisco-ise-api-client"
version = "0.1.0"
description = "A Python client for Cisco ISE ERS API"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
dependencies = [
"httpx>=0.27.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"fastmcp>=0.1.0"
]
[project.urls]
Homepage = "https://github.com/your-repo/cisco-ise-api-client"
Repository = "https://github.com/your-repo/cisco-ise-api-client"
Issues = "https://github.com/your-repo/cisco-ise-api-client/issues"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["cisco_ise_api"]
[tool.black]
line-length = 120
target-version = ['py310']