base_requirements.txt 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. # The Python web framework on which NetBox is built
  2. # https://github.com/django/django
  3. Django
  4. # Django middleware which permits cross-domain API requests
  5. # https://github.com/OttoYiu/django-cors-headers
  6. django-cors-headers
  7. # Runtime UI tool for debugging Django
  8. # https://github.com/jazzband/django-debug-toolbar
  9. django-debug-toolbar
  10. # Library for writing reusable URL query filters
  11. # https://github.com/carltongibson/django-filter
  12. django-filter
  13. # Django debug toolbar extension with support for GraphiQL
  14. # https://github.com/flavors/django-graphiql-debug-toolbar/
  15. django-graphiql-debug-toolbar
  16. # Modified Preorder Tree Traversal (recursive nesting of objects)
  17. # https://github.com/django-mptt/django-mptt
  18. django-mptt
  19. # Context managers for PostgreSQL advisory locks
  20. # https://github.com/Xof/django-pglocks
  21. django-pglocks
  22. # Prometheus metrics library for Django
  23. # https://github.com/korfuri/django-prometheus
  24. django-prometheus
  25. # Django chaching backend using Redis
  26. # https://github.com/jazzband/django-redis
  27. django-redis
  28. # Django integration for RQ (Reqis queuing)
  29. # https://github.com/rq/django-rq
  30. django-rq
  31. # Abstraction models for rendering and paginating HTML tables
  32. # https://github.com/jieter/django-tables2
  33. django-tables2
  34. # User-defined tags for objects
  35. # https://github.com/alex/django-taggit
  36. # Will evaluate v3.0 during NetBox v3.3 beta
  37. django-taggit>=2.1.0,<3.0
  38. # A Django field for representing time zones
  39. # https://github.com/mfogel/django-timezone-field/
  40. django-timezone-field
  41. # A REST API framework for Django projects
  42. # https://github.com/encode/django-rest-framework
  43. djangorestframework
  44. # Swagger/OpenAPI schema generation for REST APIs
  45. # https://github.com/axnsan12/drf-yasg
  46. drf-yasg[validation]
  47. # Django wrapper for Graphene (GraphQL support)
  48. # https://github.com/graphql-python/graphene-django
  49. graphene_django
  50. # WSGI HTTP server
  51. # https://gunicorn.org/
  52. gunicorn
  53. # Platform-agnostic template rendering engine
  54. # https://github.com/pallets/jinja
  55. Jinja2
  56. # Simple markup language for rendering HTML
  57. # https://github.com/Python-Markdown/markdown
  58. Markdown
  59. # File inclusion plugin for Python-Markdown
  60. # https://github.com/cmacmackin/markdown-include
  61. markdown-include
  62. # MkDocs Material theme (for documentation build)
  63. # https://github.com/squidfunk/mkdocs-material
  64. mkdocs-material
  65. # Introspection for embedded code
  66. # https://github.com/mkdocstrings/mkdocstrings
  67. mkdocstrings[python-legacy]
  68. # Library for manipulating IP prefixes and addresses
  69. # https://github.com/netaddr/netaddr
  70. netaddr
  71. # Fork of PIL (Python Imaging Library) for image processing
  72. # https://github.com/python-pillow/Pillow
  73. Pillow
  74. # PostgreSQL database adapter for Python
  75. # https://github.com/psycopg/psycopg2
  76. psycopg2-binary
  77. # YAML rendering library
  78. # https://github.com/yaml/pyyaml
  79. PyYAML
  80. # Sentry SDK
  81. # https://github.com/getsentry/sentry-python
  82. sentry-sdk
  83. # Social authentication framework
  84. # https://github.com/python-social-auth/social-core
  85. social-auth-core
  86. # Django app for social-auth-core
  87. # https://github.com/python-social-auth/social-app-django
  88. social-auth-app-django
  89. # SVG image rendering (used for rack elevations)
  90. # https://github.com/mozman/svgwrite
  91. svgwrite
  92. # Tabular dataset library (for table-based exports)
  93. # https://github.com/jazzband/tablib
  94. tablib
  95. # Timezone data (required by django-timezone-field on Python 3.9+)
  96. # https://github.com/python/tzdata
  97. tzdata
  98. # HTML sanitizer
  99. # https://github.com/mozilla/bleach
  100. bleach