2016-03-17 00:54:42 +03:00
|
|
|
# coding=utf-8
|
2018-03-20 20:32:43 +03:00
|
|
|
|
|
|
|
"""
|
|
|
|
Setup file
|
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
2014-09-12 11:08:18 +04:00
|
|
|
from setuptools import setup
|
|
|
|
|
2018-03-20 20:32:43 +03:00
|
|
|
|
2018-04-22 21:39:27 +03:00
|
|
|
def read(filename):
|
2018-03-20 20:50:22 +03:00
|
|
|
"""Read readme for long description"""
|
2018-04-22 21:39:27 +03:00
|
|
|
return open(os.path.join(os.path.dirname(__file__), filename)).read()
|
2018-03-20 20:32:43 +03:00
|
|
|
|
|
|
|
|
2014-09-12 11:08:18 +04:00
|
|
|
setup(
|
2016-03-17 00:54:42 +03:00
|
|
|
name='retailcrm',
|
2021-09-08 16:28:10 +03:00
|
|
|
version='5.1.2',
|
2020-12-15 13:31:03 +03:00
|
|
|
description='RetailCRM API client',
|
2018-03-20 21:06:55 +03:00
|
|
|
long_description=read('README'),
|
2015-03-12 16:08:55 +03:00
|
|
|
url='https://github.com/retailcrm/api-client-python',
|
2020-12-15 13:31:03 +03:00
|
|
|
author='RetailCRM',
|
|
|
|
author_email='support@retailcrm.pro',
|
2018-03-20 21:06:55 +03:00
|
|
|
keywords='crm saas rest e-commerce',
|
2015-03-12 16:08:55 +03:00
|
|
|
license='MIT',
|
2018-03-28 17:28:39 +03:00
|
|
|
packages=['retailcrm', 'retailcrm/versions'],
|
2015-03-12 16:08:55 +03:00
|
|
|
package_data={},
|
2020-08-20 14:44:41 +03:00
|
|
|
install_requires=['requests', 'multidimensional_urlencode', 'nose', 'coverage', 'pook', 'setuptools'],
|
2018-03-20 20:32:43 +03:00
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'Environment :: Other Environment',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 3',
|
2020-08-20 14:44:41 +03:00
|
|
|
'Programming Language :: Python :: 3.8',
|
2024-01-16 18:04:27 +03:00
|
|
|
'Programming Language :: Python :: 3.9',
|
2024-05-24 22:19:21 +03:00
|
|
|
'Programming Language :: Python :: 3.10',
|
|
|
|
'Programming Language :: Python :: 3.11',
|
|
|
|
'Programming Language :: Python :: 3.12',
|
2018-03-20 20:32:43 +03:00
|
|
|
'Programming Language :: Python :: 3 :: Only',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
]
|
2015-03-12 16:08:55 +03:00
|
|
|
)
|