-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name='bitrix24-python3-client', | ||
description='A tiny Python3 client to make requests of Bitrix24 API.', | ||
keywords='bitrix24 api rest python3 client', | ||
version='0.3.1', | ||
url='https://github.com/yarbshk/bitrix24-python3-client', | ||
author='Yuriy Rabeshko', | ||
author_email='[email protected]', | ||
license='MIT', | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3', | ||
'Topic :: Software Development :: Libraries :: Python Modules' | ||
], | ||
packages=find_packages(), | ||
install_requires=[ | ||
'requests>=2.18.4' | ||
], | ||
python_requires='>2, <4' | ||
) |