mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-16 07:56:12 +03:00
Analog of what we have for Lua, Python support is now added by this commit. This is very experimental.
16 lines
386 B
Python
16 lines
386 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name="ModSecurity Python extension",
|
|
version="0.1",
|
|
description="ModSecurity python externsion",
|
|
author="Felipe Zimmerle",
|
|
author_email="felipe@zimmerle.org",
|
|
url="http://www.modsecurity.org",
|
|
py_modules=['modsecurity'],
|
|
keywords="ModSecurity WAF Security",
|
|
|
|
)
|
|
|