aboutsummaryrefslogtreecommitdiff
path: root/python/setup.py
blob: de7b97665fb58066d56a9670325883529316644b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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])