diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2006-12-05 02:00:19 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2006-12-05 02:00:19 +0000 |
commit | 388d4370e6824b03725994c3762a90af29e885c9 (patch) | |
tree | 6a5cd9de02ee01d8d7cd6006e30444a70d08b754 /setup.py | |
parent | 20c173005ed6fdb77782699133ed0c4e713bd1ad (diff) | |
download | gpsd-388d4370e6824b03725994c3762a90af29e885c9.tar.gz |
Another step toward a Python wrapper for packet.c.
gpscat now has an option that tried to invoke it.
All regression tests pass.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,4 +4,5 @@ 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"])]) + ["gpspacket.c", "packet.c", + "isgps.c", "rtcm.c", "strl.c", "hex.c"])]) |