Linux abstraction layer written in Python?

I am looking for a way to generate .deb and .rpm packages from build scripts containing the resulting products. Since everything is written in Python, I am wondering if anyone knows of an abstraction layer that would allow me to manage both the RPM and Deb construct from the same code?

+2


source to share


1 answer


The python Distutils in the standard library has a team bdist_rpm to create rpms and third paty- stdeb adds a command to create a deb.



+2


source







All Articles