Effectively I'm letting
$z(t)=.5e^{it}$, and computing
$\int_0^{2\pi}\frac{\exp(z(t))\cos(\pi z(t))}{z(t)^2+z(t)}dt$. The parameter of integration and its bounds are specified by {t,0,2\[Pi]}
, just notation. Mathematica can typeset it nicely too, though with
With[{z=Exp[I t]}, Inactive@Integrate[(E^z Cos[\[Pi] z])/(z^2 + z),{t,0,2\[Pi]}]]
On the subject of contour integrals, I suppose Mathematica can't handle complex regions--most of their Region
related functions are explicitly
$\mathbb R^n$. That being said, it handles arbitrary real regions as integration bounds no problem, and even some basic complex bounds (ha) like piecewise linear or circular, consider (from the docs)
Integrate[1/(z + 1/2), {z, 1, E^((I \[Pi])/3), E^((2 I \[Pi])/3), -1, E^(-((2 I \[Pi])/3)), E^(-((I \[Pi])/3)), 1}]