-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 1.12 KB
/
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
26
27
28
29
30
31
from distutils.core import setup, Extension
setup(
name="nflog",
version='0.1.2',
description='Python interface to NetFilter-log on Linux',
author='Lasse Luttermann',
author_email='llp@k-net.dk',
license='BSD',
url='https://github.com/luttermann/python-nflog',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: C',
'Programming Language :: Python :: 3.5',
'Topic :: Communications',
'Topic :: Internet :: Log Analysis',
'Topic :: System :: Networking :: Monitoring'
],
keywords='nflog linux',
ext_modules=[Extension(
name="nflog",
sources=["nflog.c"],
libraries=["netfilter_log", "nfnetlink"]
)],
)