mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2025-07-12 22:54:48 -06:00

- 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)
19 lines
477 B
Python
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',
|
|
)
|