FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-iptables/setup.py at python3 · WoTTsecurity/python-iptables · GitHub
WoTTsecurity
/
python-iptables
Public
forked from
ldx/python-iptables
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-iptables
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
40 lines (36 loc) · 1.29 KB
Breadcrumbs
python-iptables
/
setup.py
Copy path
File metadata and controls
40 lines (36 loc) · 1.29 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
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
"""python-iptables setup script"""
from
distutils
.
core
import
setup
,
Extension
# make pyflakes happy
__pkgname__
=
None
__version__
=
None
exec
(
open
(
"iptc/version.py"
).
read
())
# build/install python-iptables
setup
(
name
=
__pkgname__
,
version
=
__version__
,
description
=
"Python bindings for iptables"
,
author
=
"Nilvec"
,
author_email
=
"nilvec@nilvec.com"
,
url
=
"https://github.com/ldx/python-iptables"
,
packages
=
[
"iptc"
],
package_dir
=
{
"iptc"
:
"iptc"
},
ext_modules
=
[
Extension
(
"libxtwrapper"
,
[
"libxtwrapper/wrapper.c"
])],
classifiers
=
[
"Development Status :: 5 - Production/Stable"
,
"Environment :: Console"
,
"Intended Audience :: Developers"
,
"Intended Audience :: Information Technology"
,
"Intended Audience :: System Administrators"
,
"Intended Audience :: Telecommunications Industry"
,
"License :: OSI Approved :: Apache Software License"
,
"Natural Language :: English"
,
"Operating System :: POSIX :: Linux"
,
"Programming Language :: Python"
,
"Topic :: Software Development :: Libraries"
,
"Topic :: System :: Networking :: Firewalls"
,
"Topic :: System :: Systems Administration"
,
],
license
=
"Apache License, Version 2.0"
,
)
Back
|
FazBrowse Home
|
New Git URL