python-netfilterqueue/setup.py

48 lines
1.5 KiB
Python
Raw Normal View History

2011-05-12 22:45:14 +02:00
from distutils.core import setup, Extension
2016-06-28 09:19:08 +02:00
VERSION = "0.7" # Remember to change README.rst and netfilterqueue.pyx when version changes.
2011-05-12 22:45:14 +02:00
try:
# Use Cython
from Cython.Distutils import build_ext
2011-05-12 23:08:37 +02:00
cmd = {"build_ext": build_ext}
2011-05-12 22:45:14 +02:00
ext = Extension(
"netfilterqueue",
sources=["netfilterqueue.pyx",],
libraries=["netfilter_queue"],
)
except ImportError:
# No Cython
2011-05-12 23:08:37 +02:00
cmd = {}
2011-05-12 22:45:14 +02:00
ext = Extension(
"netfilterqueue",
sources = ["netfilterqueue.c"],
libraries=["netfilter_queue"],
)
setup(
2011-05-12 23:08:37 +02:00
cmdclass = cmd,
2011-05-12 22:45:14 +02:00
ext_modules = [ext],
name="NetfilterQueue",
version=VERSION,
license="MIT",
2011-05-12 22:45:14 +02:00
author="Matthew Fox",
2016-06-28 08:52:50 +02:00
author_email="matt@tansen.ca",
2011-05-12 22:49:22 +02:00
url="https://github.com/kti/python-netfilterqueue",
2011-05-12 22:45:14 +02:00
description="Python bindings for libnetfilter_queue",
2011-05-12 22:49:22 +02:00
long_description=open("README.rst").read(),
2011-05-12 22:45:14 +02:00
download_url="http://pypi.python.org/packages/source/N/NetfilterQueue/NetfilterQueue-%s.tar.gz" % VERSION,
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
2011-05-12 22:45:14 +02:00
"Operating System :: POSIX :: Linux",
"Topic :: System :: Networking",
"Topic :: Security",
"Intended Audience :: Developers",
"Intended Audience :: Telecommunications Industry",
"Programming Language :: Cython",
"Programming Language :: Python :: 2",
2015-05-16 09:25:44 +02:00
"Programming Language :: Python :: 3",
2011-05-12 22:45:14 +02:00
]
)