pyproject.toml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. [tool.poetry]
  2. name = "glitchtip-backend"
  3. version = "0.1.0"
  4. description = "Django backend that powers GlitchTip, an open source reimplementation of Sentry"
  5. authors = ["David Burke"]
  6. license = "MIT"
  7. package-mode = false
  8. [tool.poetry.dependencies]
  9. python = "^3.11"
  10. Django = "~5.0.1"
  11. djangorestframework = "^3.12.1"
  12. django-allauth = {version = "~0.63.2", extras = ["socialaccount"]}
  13. django-cors-headers = "^4.0.0"
  14. django-environ = "~0.11.2"
  15. django-extensions = "^3.0.2"
  16. django-organizations = "^2.3.1"
  17. django-storages = {extras = ["boto3", "azure", "google"], version = "^1.12.3"}
  18. drf-nested-routers = "^0.93.3"
  19. uWSGI = "^2.0.18"
  20. whitenoise = "^6.0.0"
  21. sentry-sdk = "^2.0.0"
  22. django-filter = "^22.1"
  23. celery = {version = "~5.4.0", extras = ["redis"]}
  24. django-csp = "^3.6"
  25. dj-stripe = "~2.8.0"
  26. django-anymail = "^10.2"
  27. dj-rest-auth = "~6.0.0"
  28. user-agents = "^2.1"
  29. django-ipware = "^7.0.0"
  30. anonymizeip = "^1.0.0"
  31. symbolic = "^10.0.0"
  32. django-rest-mfa = "^1.2.2"
  33. aiohttp = "^3.7.4"
  34. google-cloud-logging = "^3.0.0"
  35. django-prometheus = "^2.2.0"
  36. django-sql-utils = "^0.7.0"
  37. django-redis = {extras = ["hiredis"], version = "^5.2.0"}
  38. uwsgi-chunked = "^0.1.8"
  39. django-import-export = "~4.1.0"
  40. psycopg = {extras = ["c"], version = "^3.1.12"}
  41. uvicorn = "^0.30.0"
  42. gunicorn = "^22.0.0"
  43. django-ninja = "~1.2.0"
  44. boto3 = "1.34.142"
  45. orjson = "^3.9.9"
  46. celery-batches = "^0.9"
  47. pydantic = {extras = ["email"], version = "^2.7.3"}
  48. [tool.poetry.group.dev.dependencies]
  49. ipdb = "^0.13.2"
  50. locust = "^2.10.1"
  51. freezegun = "^1.1.0"
  52. rope = "^1.3.0"
  53. model_bakery = "^1.1.1"
  54. django-debug-toolbar = "^4.0.0"
  55. django-stubs = {extras = ["compatible-mypy"], version = "^5.0.0"}
  56. django-sslserver = "^0.22"
  57. aioresponses = "^0.7.6"
  58. requests-mock = "^1.9.3"
  59. memray = "^1.9.1"
  60. ruff = "^0.5.0"
  61. # Needed for test --parallel
  62. tblib = "^3.0.0"
  63. [tool.ruff.lint]
  64. extend-select = ["I"]
  65. [tool.ruff.lint.per-file-ignores]
  66. "*/migrations/*.py" = ["I"]
  67. [tool.mypy]
  68. plugins = ["mypy_django_plugin.main"]
  69. [tool.django-stubs]
  70. django_settings_module = "glitchtip.settings"
  71. [build-system]
  72. requires = ["poetry>=0.12"]
  73. build-backend = "poetry.masonry.api"