forked from getsentry/sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·162 lines (132 loc) · 4.91 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#!/usr/bin/env python
"""
Sentry
======
Sentry is a realtime event logging and aggregation platform. It specializes
in monitoring errors and extracting all the information needed to do a proper
post-mortem without any of the hassle of the standard user feedback loop.
Sentry is a Server
------------------
The Sentry package, at its core, is just a simple server and web UI. It will
handle authentication clients (such as `the Python one
<https://github.com/getsentry/sentry-python>`_)
and all of the logic behind storage and aggregation.
That said, Sentry is not limited to Python. The primary implementation is in
Python, but it contains a full API for sending events from any language, in
any application.
:copyright: (c) 2011-2014 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import
# if sys.version_info[:2] != (2, 7):
# print 'Error: Sentry requires Python 2.7'
# sys.exit(1)
import os
import os.path
import sys
from distutils.command.build import build as BuildCommand
from setuptools import setup, find_packages
from setuptools.command.sdist import sdist as SDistCommand
from setuptools.command.develop import develop as DevelopCommand
ROOT = os.path.realpath(os.path.join(os.path.dirname(
sys.modules['__main__'].__file__)))
# Add Sentry to path so we can import distutils
sys.path.insert(0, os.path.join(ROOT, 'src'))
from sentry.utils.distutils import (
BuildAssetsCommand, BuildIntegrationDocsCommand, BuildJsSdkRegistryCommand
)
# The version of sentry
VERSION = '10.0.0.dev0'
# Hack to prevent stupid "TypeError: 'NoneType' object is not callable" error
# in multiprocessing/util.py _exit_function when running `python
# setup.py test` (see
# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html)
for m in ('multiprocessing', 'billiard'):
try:
__import__(m)
except ImportError:
pass
IS_LIGHT_BUILD = os.environ.get('SENTRY_LIGHT_BUILD') == '1'
# we use pip requirements files to improve Docker layer caching
def get_requirements(env):
with open(u'requirements-{}.txt'.format(env)) as fp:
return [x.strip() for x in fp.read().split('\n') if not x.startswith('#')]
install_requires = get_requirements('base')
dev_requires = get_requirements('dev')
tests_require = get_requirements('test')
optional_requires = get_requirements('optional')
# override django version in requirements file if DJANGO_VERSION is set
DJANGO_VERSION = os.environ.get('DJANGO_VERSION')
if DJANGO_VERSION:
install_requires = [
u'Django{}'.format(DJANGO_VERSION)
if r.startswith('Django>=') else r
for r in install_requires
]
class SentrySDistCommand(SDistCommand):
# If we are not a light build we want to also execute build_assets as
# part of our source build pipeline.
if not IS_LIGHT_BUILD:
sub_commands = SDistCommand.sub_commands + \
[('build_integration_docs', None),
('build_assets', None),
('build_js_sdk_registry', None)]
class SentryBuildCommand(BuildCommand):
def run(self):
BuildCommand.run(self)
if not IS_LIGHT_BUILD:
self.run_command('build_integration_docs')
self.run_command('build_assets')
self.run_command('build_js_sdk_registry')
class SentryDevelopCommand(DevelopCommand):
def run(self):
DevelopCommand.run(self)
if not IS_LIGHT_BUILD:
self.run_command('build_integration_docs')
self.run_command('build_assets')
self.run_command('build_js_sdk_registry')
cmdclass = {
'sdist': SentrySDistCommand,
'develop': SentryDevelopCommand,
'build': SentryBuildCommand,
'build_assets': BuildAssetsCommand,
'build_integration_docs': BuildIntegrationDocsCommand,
'build_js_sdk_registry': BuildJsSdkRegistryCommand,
}
setup(
name='sentry',
version=VERSION,
author='Sentry',
author_email='hello@sentry.io',
url='https://sentry.io',
description='A realtime logging and aggregation server.',
long_description=open(os.path.join(ROOT, 'README.rst')).read(),
package_dir={'': 'src'},
packages=find_packages('src'),
zip_safe=False,
install_requires=install_requires,
extras_require={
'dev': dev_requires,
'postgres': [],
'tests': tests_require,
'optional': optional_requires,
},
cmdclass=cmdclass,
license='BSD',
include_package_data=True,
entry_points={
'console_scripts': [
'sentry = sentry.runner:main',
],
},
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Software Development'
],
)