Scott James Remnant | 96927a4 | 2013-07-17 18:27:57 -0700 | [diff] [blame] | 1 | # 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 | |||||
5 | from distutils.core import setup, Extension | ||||
6 | |||||
7 | ext1 = Extension('btsocket._btsocket', sources=['src/btsocket.c']) | ||||
8 | |||||
9 | setup(name='btsocket', | ||||
10 | version='1.0', | ||||
11 | description='Module for manipulating raw Bluetooth Sockets', | ||||
12 | packages=['btsocket'], | ||||
13 | ext_modules=[ext1]) |