|
| 1 | +#!/usr/bin/env python |
| 2 | +# -*- coding: utf-8 -*- |
| 3 | + |
| 4 | +# ____ _ _ _ ____ _ _ ____ _____ ____ _____ |
| 5 | +# | __ )(_) |_ _ __(_)_ _|___ \| || | | _ \| ____/ ___|_ _| |
| 6 | +# | _ \| | __| '__| \ \/ / __) | || |_ | |_) | _| \___ \ | | |
| 7 | +# | |_) | | |_| | | |> < / __/|__ _| | _ <| |___ ___) || | |
| 8 | +# |____/|_|\__|_| |_/_/\_\_____| |_| |_| \_\_____|____/ |_| |
| 9 | + |
| 10 | +""" |
| 11 | +Setup file for Bitrix24 REST API |
| 12 | +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 13 | +
|
| 14 | +Copyright (c) 2019 by Akop Kesheshyan. |
| 15 | +""" |
| 16 | + |
| 17 | +from distutils.core import setup |
| 18 | +from setuptools import find_packages |
| 19 | + |
| 20 | +# read the contents of your README file |
| 21 | +from os import path |
| 22 | +this_directory = path.abspath(path.dirname(__file__)) |
| 23 | +with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: |
| 24 | + long_description = f.read() |
| 25 | + |
| 26 | +setup( |
| 27 | + name='bitrix24-python-rest', |
| 28 | + version='1.0.0', |
| 29 | + install_requires=['requests'], |
| 30 | + packages=find_packages(), |
| 31 | + url='https://github.com/akopkesheshyan/bitrix24-python-rest', |
| 32 | + license='MIT', |
| 33 | + author='Akop Kesheshyan', |
| 34 | + author_email='akop.kesheshyan@icloud.com', |
| 35 | + description='Bitrix24 REST API wrapper provides easy way to communicate with bitrix24 portal over REST without OAuth', |
| 36 | + long_description=long_description, |
| 37 | + long_description_content_type='text/markdown', |
| 38 | + keywords='bitrix24 api rest', |
| 39 | + classifiers=[ |
| 40 | + # How mature is this project? Common values are |
| 41 | + # 3 - Alpha |
| 42 | + # 4 - Beta |
| 43 | + # 5 - Production/Stable |
| 44 | + 'Development Status :: 5 - Production/Stable', |
| 45 | + |
| 46 | + # Indicate who your project is intended for |
| 47 | + 'Intended Audience :: Developers', |
| 48 | + 'Natural Language :: Russian', |
| 49 | + 'Natural Language :: English', |
| 50 | + 'Operating System :: OS Independent', |
| 51 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 52 | + |
| 53 | + # Pick your license as you wish (should match "license" above) |
| 54 | + 'License :: OSI Approved :: MIT License', |
| 55 | + |
| 56 | + # Specify the Python versions you support here. In particular, ensure |
| 57 | + # that you indicate whether you support Python 2, Python 3 or both. |
| 58 | + 'Programming Language :: Python :: 2', |
| 59 | + 'Programming Language :: Python :: 2.6', |
| 60 | + 'Programming Language :: Python :: 2.7', |
| 61 | + 'Programming Language :: Python :: 3', |
| 62 | + 'Programming Language :: Python :: 3.2', |
| 63 | + 'Programming Language :: Python :: 3.3', |
| 64 | + 'Programming Language :: Python :: 3.4', |
| 65 | + 'Programming Language :: Python :: 3.5', |
| 66 | + 'Programming Language :: Python :: 3.6', |
| 67 | + 'Programming Language :: Python :: 3.7', |
| 68 | + ], |
| 69 | +) |
0 commit comments