You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-geosciences/gpsd/files/gpsd-3.3-setup.py

18 lines
448 B

from distutils.core import setup, Extension
setup(
name = "gps",
version = @VERSION@,
description = 'Python libraries for the gpsd service daemon',
url = @URL@,
author = 'the GPSD project',
author_email = @EMAIL@,
license = "BSD",
ext_modules=[
Extension("gps.packet", @GPS_PACKET_SOURCES@, include_dirs=["."]),
Extension("gps.clienthelpers", @GPS_CLIENT_SOURCES@, include_dirs=["."]),
],
packages = ['gps'],
scripts = @SCRIPTS@,
)