Snort_AIPreproc/pymodule/setup.py

14 lines
281 B
Python

#!/usr/bin/env python
from distutils.core import setup, Extension
setup (
name = 'snortai',
version = '0.1',
description = 'Python interface to SnortAI module',
author = 'Fabio "BlackLight" Manganiello',
author_email = 'blacklight@autistici.org',
packages = ['snortai']
)