What you're doing looks fine. (And I agree, it's much cleaner to only use pyplot for figure creation and use the OO API for everything else.)
If you'd prefer to make the figure and axes in one call, use plt.subplots.
Also, I find it's a bit cleaner to use fig.savefig instead of plt.savefig. It won't matter in this case, but that way you avoid having to worry about which figure is "active" in the state-machine interface.
For one last thing, you could set the x and y limits with a single call to axes1.axis(...). This is purely a matter of preference. set_xlim and set_ylim are arguably a more readable way of doing it.
The "setters" and "getters" are annoying, but date from when python didn't have properties, if I recall correctly. They've been kept as the main methods partly for backwards compatibility, and partly so that "matlab-isms" like plt.setp are easier to write. In fact, if you wanted you could do
plt.setp(ax, xlabel='Xlabel', ylabel='Ylabel', xticks=range(0, 100, 20))
This avoids having to do three separate calls to set the xlabel, ylabel, and xticks. However, I personally tend to avoid it. I find it's better to be slightly more verbose in most cases. If you find it cleaner or more convenient, though, there's nothing wrong with using setp.
As an example of how I'd write it:
import matplotlib.pyplot as plt
import numpy as np
depth = np.linspace(-600, 0, 30)
temp = (4 * np.random.random(depth.size)).cumsum()
fig, ax = plt.subplots()
ax.plot(temp, depth, 'k-')
ax.axis([0, 80, -600, 0])
ax.set_ylabel(r'Depth $(m)$')
ax.set_xlabel(r'Temperature $(^{\circ}C)$')
ax.set_xticks(np.arange(0, 100, 20))
ax.grid(True)
fig.savefig('plot.svg', transparent=True)
plt.show()
