pyproject.toml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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.0.1"
  10. djangorestframework = "^3.12.1"
  11. django-allauth = "^0.50.0"
  12. django-cors-headers = "^3.2.0"
  13. django-debug-toolbar = "^3.2"
  14. django-environ = "^0.8.1"
  15. django-extensions = "^3.0.2"
  16. django-organizations = "~2.0.1"
  17. django-storages = "^1.8"
  18. drf-nested-routers = "^0.93.3"
  19. uWSGI = "^2.0.18"
  20. whitenoise = "^6.0.0"
  21. boto3 = "^1.10.44"
  22. sentry-sdk = "^1.0.0"
  23. django-filter = "^21.1"
  24. celery = {version = "~5.2.1", extras = ["redis"]}
  25. django-celery-results = "^2.0.0"
  26. jsonschema = "^3.2.0"
  27. simplejson = "^3.17.0"
  28. django-csp = "^3.6"
  29. dj-stripe = "2.7.0a7"
  30. django-anymail = "^8.1"
  31. drf-yasg = "^1.17.1"
  32. dj-rest-auth = "~2.2.1"
  33. user-agents = "^2.1"
  34. django-ipware = "^4.0.0"
  35. anonymizeip = "^1.0.0"
  36. symbolic = "^8.0.5"
  37. django-rest-mfa = "^1.0.0"
  38. aiohttp = "^3.7.4"
  39. google-cloud-logging = "^3.0.0"
  40. django-bitfield-4-0 = "^2.1.0"
  41. django-prometheus = "^2.2.0"
  42. django-sql-utils = "^0.6.1"
  43. [tool.poetry.dev-dependencies]
  44. black = "^22.1.0"
  45. ipdb = "^0.13.2"
  46. pylint = "^2.4.4"
  47. pylint-django = "^2.0.13"
  48. locust = "^1.1.1"
  49. freezegun = "^1.1.0"
  50. rope = "^0.20.1"
  51. model_bakery = "^1.1.1"
  52. tblib = "^1.7.0"
  53. mypy = "^0.931"
  54. django-stubs = "^1.9.0"
  55. django-sslserver = "^0.22"
  56. aioresponses = "^0.7.2"
  57. isort = "^5.9.3"
  58. psycopg2-binary = "^2.9.3"
  59. [tool.isort]
  60. profile = "black"
  61. [build-system]
  62. requires = ["poetry>=0.12"]
  63. build-backend = "poetry.masonry.api"