base_requirements.txt 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. # The Python web framework on which NetBox is built
  2. # https://github.com/django/django
  3. Django
  4. # Django caching using Redis
  5. # https://github.com/Suor/django-cacheops
  6. django-cacheops
  7. # Django middleware which permits cross-domain API requests
  8. # https://github.com/OttoYiu/django-cors-headers
  9. django-cors-headers
  10. # Runtime UI tool for debugging Django
  11. # https://github.com/jazzband/django-debug-toolbar
  12. django-debug-toolbar
  13. # Library for writing reusable URL query filters
  14. # https://github.com/carltongibson/django-filter
  15. django-filter
  16. # Modified Preorder Tree Traversal (recursive nesting of objects)
  17. # https://github.com/django-mptt/django-mptt
  18. django-mptt
  19. # Django integration for RQ (Reqis queuing)
  20. # https://github.com/rq/django-rq
  21. django-rq
  22. # Prometheus metrics library for Django
  23. # https://github.com/korfuri/django-prometheus
  24. django-prometheus
  25. # Abstraction models for rendering and paginating HTML tables
  26. # https://github.com/jieter/django-tables2
  27. django-tables2
  28. # User-defined tags for objects
  29. # https://github.com/alex/django-taggit
  30. django-taggit
  31. # A Django REST Framework serializer which represents tags
  32. # https://github.com/glemmaPaul/django-taggit-serializer
  33. django-taggit-serializer
  34. # A Django field for representing time zones
  35. # https://github.com/mfogel/django-timezone-field/
  36. django-timezone-field
  37. # A REST API framework for Django projects
  38. # https://github.com/encode/django-rest-framework
  39. djangorestframework
  40. # Swagger/OpenAPI schema generation for REST APIs
  41. # https://github.com/axnsan12/drf-yasg
  42. drf-yasg[validation]
  43. # Simple markup language for rendering HTML
  44. # https://github.com/Python-Markdown/markdown
  45. # py-gfm requires Markdown<3.0
  46. Markdown<3.0
  47. # Library for manipulating IP prefixes and addresses
  48. # https://github.com/drkjam/netaddr
  49. netaddr
  50. # Fork of PIL (Python Imaging Library) for image processing
  51. # https://github.com/python-pillow/Pillow
  52. Pillow
  53. # PostgreSQL database adapter for Python
  54. # https://github.com/psycopg/psycopg2
  55. psycopg2-binary
  56. # GitHub-flavored Markdown extensions
  57. # https://github.com/zopieux/py-gfm
  58. py-gfm
  59. # Extensive cryptographic library (fork of pycrypto)
  60. # https://github.com/Legrandin/pycryptodome
  61. pycryptodome