MANIFEST.in 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. include package.json
  2. include LICENSE
  3. include *.md
  4. include pyproject.toml
  5. include setup.py
  6. include setup.cfg
  7. include conftest.py
  8. # Documentation
  9. graft docs
  10. exclude docs/\#*
  11. prune docs/api
  12. prune docs/build
  13. # We must include the package_data files since include_package_data=True
  14. # See https://github.com/pypa/setuptools/issues/1461
  15. include jupyterlab/staging/*
  16. include jupyterlab/staging/templates/*
  17. include jupyterlab/staging/.yarnrc
  18. graft jupyterlab/static
  19. graft jupyterlab
  20. graft jupyterlab/tests
  21. graft jupyterlab/tests/mock_packages
  22. graft jupyterlab/themes
  23. graft jupyterlab/schemas
  24. graft jupyter-config
  25. recursive-include jupyterlab *.js
  26. prune jupyterlab/**/node_modules
  27. prune jupyterlab/staging/build
  28. recursive-exclude jupyterlab *.pyc
  29. recursive-exclude jupyterlab *.js.map
  30. # Galata
  31. include galata/README.md
  32. include galata/jupyter_server_test_config.py
  33. include galata/update_snapshots.py
  34. include galata/*.js
  35. recursive-include galata/media *.*
  36. graft galata/src
  37. graft galata/style
  38. graft galata/test
  39. # Docker
  40. include Dockerfile
  41. include .dockerignore
  42. recursive-include docker *.json