-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 790 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 790 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 distutils.core import setup
import bl2ru2
setup(
name = 'bl2ru2',
packages = ['bl2ru2'],
version = bl2ru2.__version__,
description = 'A suricata rule generator',
author = 'Robin Marsollier',
author_email = 'robin.marsollier@conix.fr',
maintainer='Robin Marsollier',
url = 'https://github.com/conix-security/bl2ru2',
keywords = ['suricata', 'ioc', 'ids'],
classifiers = [
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: Internet',
],
)