Home | History | Annotate | Download | only in python
      1 # Copyright (c) PLUMgrid, Inc.
      2 # Licensed under the Apache License, Version 2.0 (the "License")
      3 from distutils.core import setup
      4 import os
      5 import sys
      6 
      7 if os.environ.get('DESTDIR'):
      8     sys.argv += ['--root', os.environ['DESTDIR']]
      9 
     10 setup(name='bcc',
     11       version='@REVISION@',
     12       description='BPF Loader Library',
     13       author='Brenden Blanco',
     14       author_email='bblanco (a] plumgrid.com',
     15       url='https://github.com/iovisor/bcc',
     16       packages=['bcc'],
     17       platforms=['Linux'])
     18