-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·24 lines (23 loc) · 910 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
from setuptools import setup
setup(name='suri-stats',
version='0.6',
description='Tools to output graphic and stats using Suricata stats.log file',
author='Eric Leblond',
author_email='eric@regit.org',
url='http://home.regit.org/software/suri-stats/',
scripts=['suri-stats','suri-graphite'],
packages=['suristats'],
package_dir={'suristats':'src'},
provides=['suristats'],
requires=['matplotlib', 'numpy', 'ipython', 'argparse', 'sqlite3'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Software Development :: Quality Assurance'
],
)