MANIFEST.in 306 B

1234567891011121314
  1. # Include library directory with all templates
  2. recursive-include library *
  3. # Include JSON schema files
  4. recursive-include cli/core/schema *.json
  5. # Include documentation
  6. include README.md
  7. include LICENSE
  8. # Exclude unnecessary files
  9. global-exclude *.pyc
  10. global-exclude __pycache__
  11. global-exclude .DS_Store