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