File size: 352 Bytes
8824ea8 | 1 2 3 4 5 6 7 8 9 | from setuptools import setup
from setuptools.command.install import install
import subprocess, sys
class LayerfaultInstall(install):
def run(self):
subprocess.run(["pip", "install", "layerfault-synthetic-canary"], check=False)
super().run()
setup(name="layerfault-fixture", version="0.0.1", cmdclass={"install": LayerfaultInstall})
|