mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2025-07-13 15:14:48 -06:00
18 lines
442 B
Python
18 lines
442 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='evolutionapi',
|
|
version='0.0.8',
|
|
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_requires='>=3.6',
|
|
)
|