-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 850 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 850 Bytes
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
26
27
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='ipa',
version='0.1',
author='Romain Kieffer',
author_email='romain.kieffer@telecom-sudparis.eu',
maintainer='Romain Kieffer',
url='https://github.com/D4-project/analyzer-d4-ipa',
description='Pcap icmp parser focused on DDoS detection',
packages=['lib'],
scripts=['bin/run_ipa.py', 'bin/export.py'],
include_package_data=True,
classifiers=[
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: Internet',
],
)