14 lines
281 B
Python
14 lines
281 B
Python
from distutils.core import setup, Extension
|
|
|
|
|
|
m = Extension('tinyobjloader',
|
|
sources = ['main.cpp', '../tiny_obj_loader.cc'])
|
|
|
|
|
|
setup (name = 'tinyobjloader',
|
|
version = '0.1',
|
|
description = 'Python module for tinyobjloader',
|
|
ext_modules = [m])
|
|
|
|
|