forked from getsentry/raven-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·59 lines (54 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
57
58
59
#!/usr/bin/env python
"""
Raven
======
Raven is a Python client for `Sentry <http://aboutsentry.com/>`_. It provides
full out-of-the-box support for many of the popular frameworks, including
Django, and Flask. Raven also includes drop-in support for any WSGI-compatible
web application.
"""
from setuptools import setup, find_packages
tests_require = [
'blinker>=1.1',
'celery',
'Django>=1.2,<1.5',
'django-celery',
'django-nose',
'Flask>=0.8',
'logbook',
'nose',
'mock',
'sentry>=3.7.1',
'unittest2',
'webob',
]
install_requires = [
'simplejson',
]
setup(
name='raven',
version='1.5.0',
author='David Cramer',
author_email='[email protected]',
url='http://github.com/dcramer/raven',
description='Raven is a client for Sentry',
long_description=__doc__,
packages=find_packages(exclude=("tests",)),
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
extras_require={'test': tests_require},
test_suite='runtests.runtests',
include_package_data=True,
entry_points={
'console_scripts': [
'raven = raven.scripts.runner:main',
],
},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)