pyproject.toml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. [tool.poetry.dependencies]
  8. python = "^3.10"
  9. Django = "~5.0.1"
  10. djangorestframework = "^3.12.1"
  11. django-allauth = {version = "~0.63.2", extras = ["socialaccount"]}
  12. django-cors-headers = "^4.0.0"
  13. django-environ = "~0.11.2"
  14. django-extensions = "^3.0.2"
  15. django-organizations = "^2.3.1"
  16. django-storages = {extras = ["boto3", "azure", "google"], version = "^1.12.3"}
  17. drf-nested-routers = "^0.93.3"
  18. uWSGI = "^2.0.18"
  19. whitenoise = "^6.0.0"
  20. sentry-sdk = "^2.0.0"
  21. django-filter = "^22.1"
  22. celery = {version = "~5.3.0", extras = ["redis"]}
  23. django-csp = "^3.6"
  24. dj-stripe = "~2.8.0"
  25. django-anymail = "^10.2"
  26. user-agents = "^2.1"
  27. django-ipware = "^7.0.0"
  28. anonymizeip = "^1.0.0"
  29. symbolic = "^10.0.0"
  30. django-rest-mfa = "^1.2.2"
  31. aiohttp = "^3.7.4"
  32. google-cloud-logging = "^3.0.0"
  33. django-prometheus = "^2.2.0"
  34. django-sql-utils = "^0.7.0"
  35. django-redis = {extras = ["hiredis"], version = "^5.2.0"}
  36. uwsgi-chunked = "^0.1.8"
  37. django-import-export = "~4.0.3"
  38. psycopg = {extras = ["c"], version = "^3.1.12"}
  39. uvicorn = "^0.29.0"
  40. gunicorn = "^22.0.0"
  41. boto3 = "1.34.112"
  42. django-ninja = "^1.0.1"
  43. orjson = "^3.9.9"
  44. celery-batches = "^0.8.1"
  45. [tool.poetry.group.dev.dependencies]
  46. ipdb = "^0.13.2"
  47. locust = "^2.10.1"
  48. freezegun = "^1.1.0"
  49. rope = "^1.3.0"
  50. model_bakery = "^1.1.1"
  51. django-debug-toolbar = "^4.0.0"
  52. django-stubs = {extras = ["compatible-mypy"], version = "^5.0.0"}
  53. django-sslserver = "^0.22"
  54. aioresponses = "^0.7.6"
  55. requests-mock = "^1.9.3"
  56. memray = "^1.9.1"
  57. ruff = "^0.4.0"
  58. # Needed for test --parallel
  59. tblib = "^3.0.0"
  60. [tool.ruff.lint]
  61. extend-select = ["I"]
  62. [tool.ruff.lint.per-file-ignores]
  63. "*/migrations/*.py" = ["I"]
  64. [tool.mypy]
  65. plugins = ["mypy_django_plugin.main"]
  66. [tool.django-stubs]
  67. django_settings_module = "glitchtip.settings"
  68. [build-system]
  69. requires = ["poetry>=0.12"]
  70. build-backend = "poetry.masonry.api"