Backport module for sys.audit and sys.addaudithook mechanism
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

17 lines
481 B

from setuptools import setup
from distutils.core import Extension
setup(
name="sysaudit",
version="0.1.0",
description="Backport module for sys.audit and sys.addaudithook from Python 3.8",
author="Brett Langdon",
author_email="me@brett.is",
url="https://github.com/brettlangdon/sysaudit",
ext_modules=[
Extension(
"sysaudit.csysaudit", sources=["sysaudit/_csysaudit.c"], optional=True
),
],
packages=["sysaudit"],
)