How to Get User Profile Info on a Category Page

Add a metabox to the category edit screen with a user dropdown. Save the user ID as meta data.

In your category template use the meta user ID as argument for get_user_by():

// First find the ID, put it into $user_id then:
$author = get_user_by( 'id', $user_id );

See this post for an example how to get and use the author data.