nullcon2023-chall-spygame

Python C-binding object leak challenge for NullCon 2023 Berlin
git clone https://git.sinitax.com/sinitax/nullcon2023-chall-spygame
Log | Files | Refs | sfeed.txt

setup.py (325B)


      1from distutils.core import setup, Extension
      2
      3def main():
      4    setup(name="spy",
      5          version="1.0.0",
      6          description="Spy Game Module",
      7          author="Louis Burda",
      8          author_email="quent.burda@gmail.com",
      9          ext_modules=[Extension("spy", ["spymodule.c"])])
     10
     11if __name__ == "__main__":
     12    main()