base_requirements.txt 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. # Abstraction models for rendering and paginating HTML tables
  20. # https://github.com/jieter/django-tables2
  21. django-tables2
  22. # User-defined tags for objects
  23. # https://github.com/alex/django-taggit
  24. django-taggit
  25. # A Django REST Framework serializer which represents tags
  26. # https://github.com/glemmaPaul/django-taggit-serializer
  27. django-taggit-serializer
  28. # A Django field for representing time zones
  29. # https://github.com/mfogel/django-timezone-field/
  30. django-timezone-field
  31. # A REST API framework for Django projects
  32. # https://github.com/encode/django-rest-framework
  33. djangorestframework
  34. # Swagger/OpenAPI schema generation for REST APIs
  35. # https://github.com/axnsan12/drf-yasg
  36. drf-yasg[validation]
  37. # Python interface to the graphviz graph rendering utility
  38. # https://github.com/xflr6/graphviz
  39. graphviz
  40. # Simple markup language for rendering HTML
  41. # https://github.com/Python-Markdown/markdown
  42. # py-gfm requires Markdown<3.0
  43. Markdown<3.0
  44. # Library for manipulating IP prefixes and addresses
  45. # https://github.com/drkjam/netaddr
  46. netaddr
  47. # Fork of PIL (Python Imaging Library) for image processing
  48. # https://github.com/python-pillow/Pillow
  49. Pillow
  50. # PostgreSQL database adapter for Python
  51. # https://github.com/psycopg/psycopg2
  52. psycopg2-binary
  53. # GitHub-flavored Markdown extensions
  54. # https://github.com/zopieux/py-gfm
  55. py-gfm
  56. # Extensive cryptographic library (fork of pycrypto)
  57. # https://github.com/Legrandin/pycryptodome
  58. pycryptodome