In reply to Shipra_s:
If you are using the include in top of the toplevel module the package is in the file scope of this file.
Importing the package using the import statement like this
import my_pkg::*;
requires the scope of the package. my_pkg:: is the scope resolution operator.