Anders and Briegel in Python
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
366B

  1. import os
  2. from setuptools import setup, Extension, find_packages
  3. path = "chp.c"
  4. chp = Extension("chp", [path])
  5. extensions = [chp]
  6. setup(
  7. name="chp",
  8. version="0.1",
  9. packages=find_packages(),
  10. ext_modules=extensions,
  11. author="Scott Aaronson & Daniel Gottesman",
  12. description="Ported by Pete Shadbolt",
  13. license="Copyright Scott Aaronson"
  14. )