pyproject.toml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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.8"
  9. Django = "~4.1.0"
  10. djangorestframework = "^3.12.1"
  11. django-allauth = "~0.51.0"
  12. django-cors-headers = "^3.2.0"
  13. django-environ = "^0.9.0"
  14. django-extensions = "^3.0.2"
  15. django-organizations = "~2.0.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 = "^1.0.0"
  21. django-filter = "^22.1"
  22. celery = {version = "~5.2.1", extras = ["redis"]}
  23. django-celery-results = "^2.0.0"
  24. jsonschema = "^3.2.0"
  25. simplejson = "^3.17.0"
  26. django-csp = "^3.6"
  27. dj-stripe = "2.7.0a7"
  28. django-anymail = "^8.1"
  29. drf-yasg = "^1.17.1"
  30. dj-rest-auth = "~2.2.1"
  31. user-agents = "^2.1"
  32. django-ipware = "^4.0.0"
  33. anonymizeip = "^1.0.0"
  34. symbolic = "^9.0.0"
  35. django-rest-mfa = "^1.0.0"
  36. aiohttp = "^3.7.4"
  37. google-cloud-logging = "^3.0.0"
  38. django-bitfield = "^2.2.0"
  39. django-prometheus = "^2.2.0"
  40. django-sql-utils = "^0.6.1"
  41. django-redis = {extras = ["hiredis"], version = "^5.2.0"}
  42. hiredis = "^2.0.0"
  43. psycopg2 = "^2.9.3"
  44. uwsgi-chunked = "^0.1.8"
  45. django-import-export = "^2.8.0"
  46. [tool.poetry.dev-dependencies]
  47. black = "^22.1.0"
  48. ipdb = "^0.13.2"
  49. pylint = "^2.4.4"
  50. pylint-django = "^2.0.13"
  51. locust = "^2.10.1"
  52. freezegun = "^1.1.0"
  53. rope = "^1.3.0"
  54. model_bakery = "^1.1.1"
  55. tblib = "^1.7.0"
  56. mypy = "^0.971"
  57. django-debug-toolbar = "^3.2"
  58. django-stubs = "^1.9.0"
  59. django-sslserver = "^0.22"
  60. aioresponses = "^0.7.2"
  61. isort = "^5.9.3"
  62. requests-mock = "^1.9.3"
  63. [tool.isort]
  64. profile = "black"
  65. [build-system]
  66. requires = ["poetry>=0.12"]
  67. build-backend = "poetry.masonry.api"