setup.py•809 B
from setuptools import setup, find_packages
setup(
name="cisco-ise-api-client",
version="0.1.0",
description="A Python client for Cisco ISE ERS API",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Your Name",
author_email="your.email@example.com",
url="https://github.com/your-repo/cisco-ise-api-client",
packages=find_packages(),
install_requires=[
"httpx>=0.27.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"fastmcp>=0.1.0",
],
python_requires=">=3.10",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)