-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 775 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='QuickBlox',
version='0.0.3',
packages=['QuickBlox'],
description='Quickblox API client',
author='QuickBlox Tech Team',
author_email='bogdan.shaparenko@injoit.com',
url='https://github.com/shbodya/quickblox-python-sdk',
license='Apache License, Version 2.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords='chat api quickbolox quickblox.com',
install_requires=[
'requests',
],
)