api-client-python/setup.py

17 lines
414 B
Python
Raw Normal View History

2016-03-17 00:54:42 +03:00
# coding=utf-8
2014-09-12 11:08:18 +04:00
from setuptools import setup
setup(
2016-03-17 00:54:42 +03:00
name='retailcrm',
version='3.0.5',
description='Client for retailCRM API',
2015-03-12 16:08:55 +03:00
url='https://github.com/retailcrm/api-client-python',
2016-03-17 00:54:42 +03:00
author='retailCRM',
author_email='integration@retailcrm.ru',
2015-03-12 16:08:55 +03:00
keywords='crm, saas, rest, e-commerce',
license='MIT',
2016-03-17 00:54:42 +03:00
packages=['retailcrm'],
2015-03-12 16:08:55 +03:00
package_data={},
install_requires=['requests']
)