Skip to content

Commit

Permalink
Upload the package to PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
yarbshk committed Aug 31, 2017
1 parent 2ce6b18 commit 14a393e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions setup.py
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'
)

0 comments on commit 14a393e

Please sign in to comment.