Snort_AIPreproc/pymodule/setup.py

14 lines
281 B
Python
Raw Normal View History

2011-02-04 00:43:59 +01:00
#!/usr/bin/env python
2011-02-03 01:01:36 +01:00
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',
2011-02-04 00:43:59 +01:00
packages = ['snortai']
2011-02-03 01:01:36 +01:00
)