The loop does not show users

You need to add this code to the file functions.php.

function custom_post_author_archive($query) {
    if ($query->is_author)
        $query->set( 'post_type', array('post-type', 'post') );
    remove_action( 'pre_get_posts', 'custom_post_author_archive' );
}
add_action('pre_get_posts', 'custom_post_author_archive');