You can do
@variables trmodel begin
x[p in plants, m in markets] >= 0, (base_name="shipment quantities in cases", integer=true)
end
or
@variables trmodel begin
x[p in plants, m in markets] >= 0, (integer=true,)
end
if there is only one keyword argument.
See https://github.com/JuliaOpt/JuMP.jl/blob/79a4fe4d4fc11bc96b62a88b085734429a833dd2/src/macros.jl#L847-L848