Is your question that you want to include electrostatic interactions via partial charges in your system?
In that case you need to specify the charges of each particle type when you define the particle types, i.e. something like
potential_set.addParticleType(ParticleType(symbol='O', mass=15.9994*atomic_mass_unit, sigma=3.17*Angstrom, epsilon=0.0067*eV, charge=0.5*elementary_charge))
(see http://www.docs.quantumwise.com/manuals/Types/ParticleType/ParticleType.html#particletype-c (http://www.docs.quantumwise.com/manuals/Types/ParticleType/ParticleType.html#particletype-c))
You need to add a coulomb solver to the potential set to add the resulting coulomb interactions (see e.g. http://www.docs.quantumwise.com/manuals/Types/CoulombSPME/CoulombSPME.html#coulombspme-c (http://www.docs.quantumwise.com/manuals/Types/CoulombSPME/CoulombSPME.html#coulombspme-c)), but I see you have already done that.