blob: 509114d12bcdd32fc7db20ce871e8e617497b4ad [file] [log] [blame]
Mike Frysinger300354e2017-10-12 14:13:10 -04001#!/usr/bin/env python2
Scott James Remnant96927a42013-07-17 18:27:57 -07002# 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 Remnant06c46262014-03-03 13:55:06 -08006from setuptools import setup, Extension
Scott James Remnant96927a42013-07-17 18:27:57 -07007
8ext1 = Extension('btsocket._btsocket', sources=['src/btsocket.c'])
9
10setup(name='btsocket',
11 version='1.0',
12 description='Module for manipulating raw Bluetooth Sockets',
13 packages=['btsocket'],
14 ext_modules=[ext1])