forked from RedisDesktop/OopsyPad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.11 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
from setuptools import find_packages, setup
import sys
assert sys.version_info >= (3,), 'Python 3 is required'
VERSION = '0.2.1-alpha'
setup(
name='oopsypad',
version=VERSION,
description='Breakpad minidump processing tool.',
license='GPLv3',
install_requires=[
'flask',
'flask-admin',
'flask-mongoengine',
'flask-httpauth',
'flask-security',
'redis',
'celery',
'python-dateutil',
'gunicorn',
'requests',
'raven',
],
tests_require=[
'selenium',
'flask-testing',
],
test_suite='oopsypad.tests',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts':
['oopsy_run_server = oopsypad.server.run:oopsy_run_server',
'oopsy_celery_worker = oopsypad.server.worker:oopsy_celery_worker',
'oopsy_symfile = oopsypad.client.symfile:oopsy_symfile',
'oopsy_crash_report = oopsypad.client.minidump:oopsy_crash_report',
'oopsy_admin = oopsypad.client.admin:oopsy_admin']
}
)