-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
25 lines (24 loc) · 1019 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
25
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='potiron',
authors=['Gérard Wagener', 'Christian Studer'],
author_emails=['[email protected]', '[email protected]'],
maintainer='Christian Studer',
url='https://github.com/CIRCL/potiron',
description='Potiron - Normalize, Index and Visualize Network Capture.',
packages=['potiron'],
scripts=['bin/manage_redis.py', 'bin/parse_pcap_files.py', 'bin/run_redis.py', 'bin/store_json_data.py', 'var/www/potiron-srv.py'],
classifiers=[
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Environment :: Console',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: Internet'
]
)