| #!/usr/bin/env python | |
| # Copyright 2011 The Chromium 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 distutils.core import setup | |
| setup( | |
| name = 'py_trace_event', | |
| packages = ['trace_event'], | |
| version = '0.1.0', | |
| description = 'Performance tracing for python', | |
| author='Nat Duca' | |
| ) |