├── .gitignore ├── README.md ├── WORKSPACE ├── example ├── BUILD ├── WORKSPACE ├── hello.py └── requirements.txt ├── zapp.jpg └── zapp ├── BUILD ├── __init__.py ├── compiler └── __main__.py ├── support ├── __init__.py ├── manifest.py ├── pep425.py └── unpack.py └── zapp.bzl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrdem/rules_zapp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrdem/rules_zapp/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrdem/rules_zapp/HEAD/WORKSPACE -------------------------------------------------------------------------------- /example/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrdem/rules_zapp/HEAD/example/BUILD -------------------------------------------------------------------------------- /example/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrdem/rules_zapp/HEAD/example/WORKSPACE -------------------------------------------------------------------------------- /example/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrdem/rules_zapp/HEAD/example/hello.py -------------------------------------------------------------------------------- /example/requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML==5.4.1 2 | -------------------------------------------------------------------------------- /zapp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrdem/rules_zapp/HEAD/zapp.jpg -------------------------------------------------------------------------------- /zapp/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrdem/rules_zapp/HEAD/zapp/BUILD -------------------------------------------------------------------------------- /zapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zapp/compiler/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrdem/rules_zapp/HEAD/zapp/compiler/__main__.py -------------------------------------------------------------------------------- /zapp/support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zapp/support/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrdem/rules_zapp/HEAD/zapp/support/manifest.py -------------------------------------------------------------------------------- /zapp/support/pep425.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrdem/rules_zapp/HEAD/zapp/support/pep425.py -------------------------------------------------------------------------------- /zapp/support/unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrdem/rules_zapp/HEAD/zapp/support/unpack.py -------------------------------------------------------------------------------- /zapp/zapp.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrdem/rules_zapp/HEAD/zapp/zapp.bzl --------------------------------------------------------------------------------