evolution-client-python/setup.py
Davidson Gomes b0131a1141 feat: Add full support for WebSocket configuration and management in the Evolution API Client library
- Implement WebSocketConfig and WebSocketInfo models for event configuration
- Add create_websocket() method in the client for simplified creation of WebSocket handlers
- Expand WebSocket service with set_websocket() and find_websocket() methods
- Update README with detailed documentation on WebSocket configuration and usage
- Add new event handlers in the test example (on_qrcode, on_connection)
2025-03-06 09:44:59 -03:00

19 lines
477 B
Python

from setuptools import setup, find_packages
setup(
name='evolutionapi',
version='0.1.1',
description='Client Python para a API Evolution',
author='Davidson Gomes',
author_email='contato@agenciadgcode.com',
packages=find_packages(),
package_data={'': ['*']},
include_package_data=True,
install_requires=[
'requests>=2.25.1',
'requests_toolbelt>=1.0.0',
'python-socketio>=5.11.1'
],
python_requires='>=3.6',
)