Home | History | Annotate | Download | only in py_trace_event
      1 #!/usr/bin/env python
      2 # Copyright 2011 The Chromium 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 from distutils.core import setup
      6 setup(
      7     name='py_trace_event',
      8     packages=['trace_event_impl'],
      9     version='0.1.0',
     10     description='Performance tracing for python',
     11     author='Nat Duca'
     12 )
     13