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.

setup.py 327B

1234567891011
  1. from distutils.core import setup, Extension
  2. orca_module = Extension('orca',
  3. sources = ['orcamodule.cpp'],
  4. extra_compile_args=['-std=c++11'],)
  5. setup (name = 'orca',
  6. version = '1.0',
  7. description = 'ORCA motif counting package',
  8. ext_modules = [orca_module])