/mozilla-release/third_party/python/sentry-sdk/setup.py

https://github.com/cliqz-oss/browser-f · Python · 58 lines · 46 code · 3 blank · 9 comment · 0 complexity · 9eb695820a89d8c247a79501789c79e3 MD5 · raw file

  1. #!/usr/bin/env python
  2. """
  3. Sentry-Python - Sentry SDK for Python
  4. =====================================
  5. **Sentry-Python is an SDK for Sentry.** Check out `GitHub
  6. <https://github.com/getsentry/sentry-python>`_ to find out more.
  7. """
  8. from setuptools import setup, find_packages
  9. setup(
  10. name="sentry-sdk",
  11. version="0.14.3",
  12. author="Sentry Team and Contributors",
  13. author_email="hello@getsentry.com",
  14. url="https://github.com/getsentry/sentry-python",
  15. description="Python client for Sentry (https://getsentry.com)",
  16. long_description=__doc__,
  17. packages=find_packages(exclude=("tests", "tests.*")),
  18. # PEP 561
  19. package_data={"sentry_sdk": ["py.typed"]},
  20. zip_safe=False,
  21. license="BSD",
  22. install_requires=["urllib3>=1.10.0", "certifi"],
  23. extras_require={
  24. "flask": ["flask>=0.11", "blinker>=1.1"],
  25. "bottle": ["bottle>=0.12.13"],
  26. "falcon": ["falcon>=1.4"],
  27. "django": ["django>=1.8"],
  28. "sanic": ["sanic>=0.8"],
  29. "celery": ["celery>=3"],
  30. "beam": ["beam>=2.12"],
  31. "rq": ["0.6"],
  32. "aiohttp": ["aiohttp>=3.5"],
  33. "tornado": ["tornado>=5"],
  34. "sqlalchemy": ["sqlalchemy>=1.2"],
  35. "pyspark": ["pyspark>=2.4.4"],
  36. },
  37. classifiers=[
  38. "Development Status :: 5 - Production/Stable",
  39. "Environment :: Web Environment",
  40. "Intended Audience :: Developers",
  41. "License :: OSI Approved :: BSD License",
  42. "Operating System :: OS Independent",
  43. "Programming Language :: Python",
  44. "Programming Language :: Python :: 2",
  45. "Programming Language :: Python :: 2.7",
  46. "Programming Language :: Python :: 3",
  47. "Programming Language :: Python :: 3.4",
  48. "Programming Language :: Python :: 3.5",
  49. "Programming Language :: Python :: 3.6",
  50. "Programming Language :: Python :: 3.7",
  51. "Programming Language :: Python :: 3.8",
  52. "Topic :: Software Development :: Libraries :: Python Modules",
  53. ],
  54. )