-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.06 KB
/
setup.py
File metadata and controls
41 lines (38 loc) · 1.06 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
install_requires = [
'sentry>=6.0.0',
]
f = open('README.rst')
readme = f.read()
f.close()
setup(
name='sentry-export',
version='0.10.4',
author='Dave McLain',
author_email='dmclain@gmail.com',
url='http://github.com/dmclain/sentry-export',
description='A Sentry extension for exporting event data',
long_description=readme,
license='MIT',
packages=find_packages(),
install_requires=install_requires,
entry_points={
'sentry.apps': [
'sentry_export = sentry_export',
],
'sentry.plugins': [
'sentry_export = sentry_export.plugin:ExportPlugin'
],
},
include_package_data=True,
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development'
],
)