MANIFEST.in 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #
  2. # Copyright 2018-2022 Elyra Authors
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. # exclude from ANY directory
  17. global-exclude *.ipynb
  18. global-exclude *.py[cod]
  19. global-exclude __pycache__
  20. global-exclude .git
  21. global-exclude .ipynb_checkpoints
  22. global-exclude .DS_Store
  23. global-exclude *.sh
  24. global-exclude docs
  25. global-exclude tests
  26. # explicit includes
  27. include CONTRIBUTING.md
  28. include README.md
  29. include LICENSE
  30. include dist/*.tgz
  31. recursive-exclude * __pycache__
  32. recursive-exclude * *.py[co]
  33. recursive-include elyra/metadata/schemas *
  34. recursive-include elyra/templates *
  35. recursive-include elyra/static *
  36. recursive-include etc/config/components/ *.json
  37. recursive-include etc/config/components/kfp *.yaml
  38. recursive-include etc/config/jupyter_notebook_config.d *.json
  39. recursive-include etc/config/jupyter_server_config.d *.json
  40. recursive-include etc/config/metadata/runtime-images *.json
  41. recursive-include etc/config/metadata/component-registries *.json
  42. recursive-include etc/config/settings/ *.json
  43. # Include Airflow catalog connector schemas
  44. include elyra/pipeline/airflow/provider_package_catalog_connector/airflow-provider-package-catalog.json
  45. include elyra/pipeline/airflow/package_catalog_connector/airflow-package-catalog.json