blob: aed456c105e728763c1549d0513d2ae9cc3ff453 [file] [log] [blame]
Scott James Remnant96927a42013-07-17 18:27:57 -07001# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5from distutils.core import setup, Extension
6
7ext1 = Extension('btsocket._btsocket', sources=['src/btsocket.c'])
8
9setup(name='btsocket',
10 version='1.0',
11 description='Module for manipulating raw Bluetooth Sockets',
12 packages=['btsocket'],
13 ext_modules=[ext1])