-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
56 lines (52 loc) · 1.38 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
from setuptools import setup, find_packages
version = '0.23.13'
setup(
name='dino',
version=version,
description="Distributed Notifications",
long_description="""Distributed notification server using websockets""",
classifiers=[],
keywords='notifications,chat,socketio,distributed',
author='Oscar Eriksson',
author_email='oscar.eriks@gmail.com',
url='/~https://github.com/thenetcircle/dino',
license='LICENSE.txt',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'zope.interface', # interfaces
'pyyaml', # configuration files
'redis', # redis client
'psycopg2',
'sqlalchemy',
'flask-restful',
'flask-socketio',
'Flask-OAuthlib',
'flask_wtf',
'wtforms',
'kafka-python',
'python-socketio',
'mysqlclient',
'gunicorn',
'activitystreams',
'codecov',
'fakeredis',
'nose',
'emoji',
'codecov',
'coverage',
'cassandra-driver',
'kombu',
'typing',
'nose-parameterized',
'python-dateutil',
'psycogreen',
'statsd',
'pymitter',
'psutil',
'gitpython',
'sentry-sdk',
'blinker'
])