-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
39 lines (38 loc) · 1.15 KB
/
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
33
34
35
36
37
38
39
# -*- coding: utf-8 -*-
# Copyright (c) 2014 Plivo Team. See LICENSE.txt for details.
from setuptools import setup
setup(
name='SharQServer',
version='0.2.0',
url='https://github.com/plivo/sharq-server',
author='Plivo Team',
author_email='[email protected]',
license=open('LICENSE.txt').read(),
description='An API queuing server based on the SharQ library.',
long_description=open('README.md').read(),
packages=['sharq_server'],
py_modules=['runner'],
install_requires=[
'Flask==0.10.1',
'Jinja2==2.7.2',
'MarkupSafe==0.23',
'Werkzeug==0.11.11',
'gevent==22.10.2',
'greenlet==2.0.2',
'itsdangerous==0.24',
'gunicorn==19.5.0',
'ujson==2.0.0'
],
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'
],
entry_points="""
[console_scripts]
sharq-server=runner:run
"""
)