forked from getsentry/sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·71 lines (60 loc) · 1.77 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
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env python
import sys
try:
from setuptools import setup, find_packages, Command
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages, Command
tests_require = [
'Django>=1.2,<1.4',
# celery
'django-celery',
# django migrations
'south',
# haystack support
'django-haystack',
'whoosh',
# python-daemon and eventlet are required to run the Sentry independent webserver
'python-daemon>=1.6',
'eventlet>=0.9.15',
]
install_requires = [
'django-paging>=0.2.4',
'django-indexer>=0.3.0',
'django-templatetag-sugar>=0.1.0',
]
if sys.version_info[:2] < (2, 7):
install_requires.append('importlib')
if sys.version_info[:2] < (2, 5):
install_requires.append('uuid')
setup(
name='django-sentry',
version='1.8.7',
author='David Cramer',
author_email='[email protected]',
url='http://github.com/dcramer/django-sentry',
description = 'Exception Logging to a Database in Django',
packages=find_packages(exclude=("example_project", "tests")),
zip_safe=False,
install_requires=install_requires,
dependency_links=[
'https://github.com/disqus/django-haystack/tarball/master#egg=django-haystack',
],
tests_require=tests_require,
extras_require={'test': tests_require},
test_suite='runtests.runtests',
include_package_data=True,
entry_points = {
'console_scripts': [
'sentry = sentry.scripts.runner:main',
],
},
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)