mirror of
https://github.com/BlackLight/Snort_AIPreproc.git
synced 2024-11-14 12:47:16 +01:00
13 lines
281 B
Python
13 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']
|
|
)
|
|
|