pyproject.toml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 = "~0.61.1"
  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. dj-rest-auth = "~5.0.0"
  27. user-agents = "^2.1"
  28. django-ipware = "^7.0.0"
  29. anonymizeip = "^1.0.0"
  30. symbolic = "^10.0.0"
  31. django-rest-mfa = "^1.2.2"
  32. aiohttp = "^3.7.4"
  33. google-cloud-logging = "^3.0.0"
  34. django-prometheus = "^2.2.0"
  35. django-sql-utils = "^0.7.0"
  36. django-redis = {extras = ["hiredis"], version = "^5.2.0"}
  37. uwsgi-chunked = "^0.1.8"
  38. django-import-export = "~4.0.3"
  39. psycopg = {extras = ["c"], version = "^3.1.12"}
  40. uvicorn = "^0.29.0"
  41. gunicorn = "^22.0.0"
  42. boto3 = "1.34.114"
  43. django-ninja = "^1.0.1"
  44. orjson = "^3.9.9"
  45. celery-batches = "^0.8.1"
  46. [tool.poetry.group.dev.dependencies]
  47. ipdb = "^0.13.2"
  48. locust = "^2.10.1"
  49. freezegun = "^1.1.0"
  50. rope = "^1.3.0"
  51. model_bakery = "^1.1.1"
  52. django-debug-toolbar = "^4.0.0"
  53. django-stubs = {extras = ["compatible-mypy"], version = "^5.0.0"}
  54. django-sslserver = "^0.22"
  55. aioresponses = "^0.7.6"
  56. requests-mock = "^1.9.3"
  57. memray = "^1.9.1"
  58. ruff = "^0.4.0"
  59. # Needed for test --parallel
  60. tblib = "^3.0.0"
  61. [tool.ruff.lint]
  62. extend-select = ["I"]
  63. [tool.ruff.lint.per-file-ignores]
  64. "*/migrations/*.py" = ["I"]
  65. [tool.mypy]
  66. plugins = ["mypy_django_plugin.main"]
  67. [tool.django-stubs]
  68. django_settings_module = "glitchtip.settings"
  69. [build-system]
  70. requires = ["poetry>=0.12"]
  71. build-backend = "poetry.masonry.api"