FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-libnetfilter-queue/setup.py at master · teamredlabs/python-libnetfilter-queue · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
teamredlabs
/
python-libnetfilter-queue
Public
Notifications
You must be signed in to change notification settings
Fork
3
Star
4
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-libnetfilter-queue
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
29 lines (27 loc) · 1.27 KB
Breadcrumbs
python-libnetfilter-queue
/
setup.py
Copy path
File metadata and controls
29 lines (27 loc) · 1.27 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
"""The setup.py script."""
from
distutils
.
core
import
setup
,
Extension
setup
(
name
=
"python-libnetfilter-queue"
,
version
=
'0.0.1'
,
description
=
'Python wrapper for libnetfilter_queue'
,
author
=
'John Lawrence M. Penafiel'
,
author_email
=
'jonh@teamredlabs.com'
,
license
=
'BSD-2-Clause'
,
url
=
'https://github.com/teamredlabs/python-libnetfilter-queue'
,
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 :: 2.7'
,
'Topic :: Communications'
,
'Topic :: Internet :: Log Analysis'
,
'Topic :: System :: Networking :: Monitoring'
],
keywords
=
'libnetfilter libnetfilterqueue netfilter nfqueue'
,
ext_modules
=
[
Extension
(
name
=
"libnetfilterqueue"
,
sources
=
[
"libnetfilterqueue.c"
],
libraries
=
[
"netfilter_queue"
,
"nfnetlink"
]
)])
Back
|
FazBrowse Home
|
New Git URL