Skip to content

Commit f750f3f

Browse files
author
root
committed
adding setup.py file
1 parent 878a656 commit f750f3f

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

python/setup.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from distutils.core import setup, Extension
2+
3+
4+
m = Extension('tinyobjloader',
5+
sources = ['main.cpp', '../tiny_obj_loader.cc'])
6+
7+
8+
setup (name = 'tinyobjloader',
9+
version = '0.1',
10+
description = 'Python module for tinyobjloader',
11+
ext_modules = [m])
12+
13+

0 commit comments

Comments
 (0)