forked from iovisor/bcc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py.in
More file actions
17 lines (15 loc) · 487 Bytes
/
Copy pathsetup.py.in
File metadata and controls
17 lines (15 loc) · 487 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright (c) PLUMgrid, Inc.
# Licensed under the Apache License, Version 2.0 (the "License")
from distutils.core import setup
import os
import sys
if os.environ.get('DESTDIR'):
sys.argv += ['--root', os.environ['DESTDIR']]
setup(name='bcc',
version='@REVISION@',
description='BPF Loader Library',
author='Brenden Blanco',
author_email='bblanco@plumgrid.com',
url='https://github.com/iovisor/bcc',
packages=['bcc'],
platforms=['Linux'])