Yu-Hsuan Hsu | f0c71bd | 2022-02-15 10:20:14 +0800 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
Scott James Remnant | 96927a4 | 2013-07-17 18:27:57 -0700 | [diff] [blame] | 2 | # Copyright (c) 2013 The Chromium OS Authors. All rights reserved. |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
| 5 | |
Scott James Remnant | 06c4626 | 2014-03-03 13:55:06 -0800 | [diff] [blame] | 6 | from setuptools import setup, Extension |
Scott James Remnant | 96927a4 | 2013-07-17 18:27:57 -0700 | [diff] [blame] | 7 | |
| 8 | ext1 = Extension('btsocket._btsocket', sources=['src/btsocket.c']) |
| 9 | |
| 10 | setup(name='btsocket', |
| 11 | version='1.0', |
| 12 | description='Module for manipulating raw Bluetooth Sockets', |
| 13 | packages=['btsocket'], |
| 14 | ext_modules=[ext1]) |