libhfs/setup.py

6 lines
105 B
Python
Raw Permalink Normal View History

2018-09-19 10:45:35 +00:00
from distutils.core import setup, Extension
2018-09-19 13:56:45 +00:00
setup(
ext_modules=[Extension('libhfs', ['main.c'])],
)