blob: 509114d12bcdd32fc7db20ce871e8e617497b4ad [file] [log] [blame]
#!/usr/bin/env python2
# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from setuptools import setup, Extension
ext1 = Extension('btsocket._btsocket', sources=['src/btsocket.c'])
setup(name='btsocket',
version='1.0',
description='Module for manipulating raw Bluetooth Sockets',
packages=['btsocket'],
ext_modules=[ext1])