Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/setup.py
blob: 7a31dc5bf14fca812cb5ba979ecde0ef1fef646a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python

"""
setup.py file for 3dpong
"""

from distutils.core import setup, Extension

pongc_module = Extension('_pongc', sources=['pongc.cpp', 'pongc_wrap.cxx'] )

setup (name = 'pongc', version = '0.1',
       author      = "Wade Brainerd",
       description = """3DPong C extension library.""",
       ext_modules = [pongc_module],  py_modules = ["pongc"])