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 | |
Scott James Remnant | 06c4626 | 2014-03-03 13:55:06 -0800 | [diff] [blame^] | 5 | from setuptools import setup, Extension |
Scott James Remnant | 96927a4 | 2013-07-17 18:27:57 -0700 | [diff] [blame] | 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]) |