-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
32 lines (31 loc) · 1003 Bytes
/
setup.py
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
27
28
29
30
31
32
# -*- coding: utf-8 -*-
# Copyright (c) 2014 Plivo Team. See LICENSE.txt for details.
from setuptools import setup
setup(
name='SharQ',
version='1.3.0',
url='https://github.com/plivo/sharq',
author='Plivo Team',
author_email='voice-team@plivo.com',
packages=['sharq'],
package_data={
'sharq': ['scripts/lua/*.lua']
},
license="The MIT License (MIT)",
description='An API queueing system built at Plivo.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=[
'msgpack==0.5.6',
'redis-py-cluster==2.0.0'
],
python_requires='>3.5',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)