summaryrefslogtreecommitdiff
path: root/setup.py
blob: e3b871f9713a55ee3a7690dee7743ce3b0229e7c (plain)
1
2
3
4
5
6
# Creates build/lib.linux-${arch}-${pyvers}/gpspacket.so,
# where ${arch} is an architecture and ${pyvers} is a Python version.
from distutils.core import setup, Extension
setup(name="gpspacket", version="1.0",
      ext_modules=[Extension("gpspacket",
                             ["gpspacket.c", "isgps.c", "rtcm.c", "strl.c", "hex.c"])])