-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
48 lines (44 loc) · 1.35 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
#!/usr/bin/env python
"""
Orbital
=======
Orbital is a visualization for `Sentry <http://getsentry.com/>`_.
"""
# 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
from setuptools import setup, find_packages
setup(
name='sentry-orbital',
version='0.1.0',
author='Sentry',
author_email='hello@getsentry.com',
url='https://github.com/getsentry/sentry-orbital',
description='Orbital is a visualization for Sentry (https://getsentry.com)',
long_description=__doc__,
packages=find_packages(exclude=("tests", "tests.*",)),
zip_safe=False,
license='Apache 2.0',
install_requires=[],
include_package_data=True,
entry_points={
'sentry.apps': [
'orbital = orbital',
],
},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python',
'Topic :: Software Development',
],
)