├── .gitignore ├── BUILD ├── README.md ├── WORKSPACE ├── main.py ├── pypi.bzl ├── requirements.bzl ├── resources └── test.json ├── test.py └── tests ├── fake_test.py └── fakeagain └── fake2_test.py /.gitignore: -------------------------------------------------------------------------------- 1 | /bazel-* 2 | /ENV 3 | -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanin47/bazel-pex-pip/HEAD/BUILD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanin47/bazel-pex-pip/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanin47/bazel-pex-pip/HEAD/WORKSPACE -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanin47/bazel-pex-pip/HEAD/main.py -------------------------------------------------------------------------------- /pypi.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanin47/bazel-pex-pip/HEAD/pypi.bzl -------------------------------------------------------------------------------- /requirements.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanin47/bazel-pex-pip/HEAD/requirements.bzl -------------------------------------------------------------------------------- /resources/test.json: -------------------------------------------------------------------------------- 1 | TEST 2 | -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanin47/bazel-pex-pip/HEAD/test.py -------------------------------------------------------------------------------- /tests/fake_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanin47/bazel-pex-pip/HEAD/tests/fake_test.py -------------------------------------------------------------------------------- /tests/fakeagain/fake2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanin47/bazel-pex-pip/HEAD/tests/fakeagain/fake2_test.py --------------------------------------------------------------------------------