Yup!
register_post_type(
'recipe',
array(
'labels' => array(
'name' => __( 'Recipes', 'progression' ),
'singular_name' => __( 'Recipe', 'progression' )
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'recipes'),
'supports' => array('title', 'excerpt', 'editor', 'thumbnail','comments', 'author'),
'can_export' => true,
)