api-client-python/setup.py

46 lines
1.4 KiB
Python
Raw Normal View History

2016-03-17 00:54:42 +03:00
# coding=utf-8
"""
Setup file
"""
import os
2014-09-12 11:08:18 +04:00
from setuptools import setup
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()
2014-09-12 11:08:18 +04:00
setup(
2016-03-17 00:54:42 +03:00
name='retailcrm',
2020-08-20 14:44:41 +03:00
version='5.1.0',
2018-03-20 20:50:22 +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',
2016-03-17 00:54:42 +03:00
author='retailCRM',
author_email='integration@retailcrm.ru',
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'],
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',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
2020-08-20 14:44:41 +03:00
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules',
]
2015-03-12 16:08:55 +03:00
)