forked from getsentry/sentry-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 782 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (22 loc) · 782 Bytes
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
#!/usr/bin/env python
"""
Sentry-Python - Sentry SDK for Python
=====================================
**Sentry-Python is an experimental SDK for Sentry.** Check out `GitHub
<https://github.com/getsentry/sentry-python>`_ to find out more.
"""
from setuptools import setup, find_packages
setup(
name="sentry-sdk",
version="0.4.2",
author="Sentry Team and Contributors",
url="https://github.com/getsentry/sentry-python",
description="Python client for Sentry (https://getsentry.com)",
long_description=__doc__,
packages=find_packages(exclude=("tests", "tests.*")),
zip_safe=False,
license="BSD",
install_requires=["urllib3", "certifi"],
extras_require={"flask": ["flask>=0.8", "blinker>=1.1"]},
)