-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
42 lines (40 loc) · 1.58 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
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="fnfqueue",
version="1.1.2",
setup_requires=["cffi>=1.0.0"],
packages=["fnfqueue"],
cffi_modules=["build_fnfqueue.py:ffibuilder"],
install_requires=["cffi>=1.0.0"],
author="Gernot Vormayr",
author_email="gvormayr@gmail.com",
description="Fast python library encapsulating the nfqueue netlink interface.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/notti/fnfqueue",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet",
"Topic :: Security",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Operating System Kernels :: Linux",
],
keywords="nfqueue netfilter netlink iptables firewall mangle",
)