-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
31 lines (27 loc) · 923 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import re
import setuptools
with open('README.md') as fh:
long_description = fh.read()
with open('pidtree_bcc/__init__.py') as fh:
version = re.search(r"__version__\s*=\s*'([^\']+)", fh.read()).group(1)
setuptools.setup(
name='pidtree-bcc',
version=version,
author='Matt Carroll',
author_email='[email protected]',
description='eBPF-based intrusion detection and audit logging',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Yelp/pidtree-bcc',
packages=setuptools.find_packages(
exclude=('tests*', 'itest*', 'packaging*'),
),
include_package_data=True,
license='BSD 3-clause "New" or "Revised License"',
scripts=['bin/pidtree-bcc'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
'Operating System :: Linux',
],
)