mirror of
https://github.com/retailcrm/api-client-python.git
synced 2024-11-22 13:06:03 +03:00
17 lines
414 B
Python
17 lines
414 B
Python
# coding=utf-8
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='retailcrm',
|
|
version='3.0.5',
|
|
description='Client for retailCRM API',
|
|
url='https://github.com/retailcrm/api-client-python',
|
|
author='retailCRM',
|
|
author_email='integration@retailcrm.ru',
|
|
keywords='crm, saas, rest, e-commerce',
|
|
license='MIT',
|
|
packages=['retailcrm'],
|
|
package_data={},
|
|
install_requires=['requests']
|
|
)
|