forked from getsentry/sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (43 loc) · 1.7 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
#!/usr/bin/env python
import os
import sys
from setuptools import setup
from setuptools.command.build import build as BuildCommand
from setuptools.command.develop import develop as DevelopCommand
from setuptools.command.sdist import sdist as SDistCommand
ROOT = os.path.dirname(os.path.abspath(__file__))
# add sentry to path so we can import sentry.utils.distutils
sys.path.insert(0, os.path.join(ROOT, "src"))
from sentry.utils.distutils.commands.build_assets import BuildAssetsCommand
from sentry.utils.distutils.commands.build_integration_docs import BuildIntegrationDocsCommand
from sentry.utils.distutils.commands.build_js_sdk_registry import BuildJsSdkRegistryCommand
class SentrySDistCommand(SDistCommand):
sub_commands = [
*SDistCommand.sub_commands,
("build_integration_docs", None),
("build_assets", None),
("build_js_sdk_registry", None),
]
class SentryBuildCommand(BuildCommand):
def run(self):
import logging
logging.getLogger("sentry").setLevel(logging.WARNING)
self.run_command("build_integration_docs")
self.run_command("build_assets")
self.run_command("build_js_sdk_registry")
super().run()
class SentryDevelopCommand(DevelopCommand):
def run(self):
super().run()
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(cmdclass=cmdclass)