summaryrefslogtreecommitdiff
blob: 93cc5e8f21496a5005c2d316104ab54df3004a9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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@,
)