• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
5"""Script to set up v4l2 extension module.
6"""
7from distutils.core import setup, Extension
8
9setup (name = 'v4l2',
10       version = '1.0',
11       ext_modules = [Extension('v4l2', ['v4l2module.cc'])])
12