blob: 47761d629789b75b209acc26a4ee5420b6f35049 [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
Scott James Remnant06c46262014-03-03 13:55:06 -08005from setuptools import setup, Extension
Scott James Remnant96927a42013-07-17 18:27:57 -07006
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])