adding setup.py file
This commit is contained in:
13
python/setup.py
Normal file
13
python/setup.py
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
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])
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user