File: setup.py

package info (click to toggle)
python-netfilter 0.6.4-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208 kB
  • sloc: python: 801; makefile: 3
file content (28 lines) | stat: -rwxr-xr-x 974 bytes parent folder | download | duplicates (3)
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
#!/usr/bin/env python

from setuptools import setup

setup(
    name='netfilter',
    version='0.6.4',
    description='Python modules for manipulating netfilter rules',
    url='https://github.com/jlaine/python-netfilter',
    author='Jeremy Laine',
    author_email='jeremy.laine@m4x.org',
    license='GPLv3+',
    packages=['netfilter'],
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Intended Audience :: Developers',
        'Intended Audience :: System Administrators',
        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
        'Operating System :: POSIX :: Linux',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 3',
        'Topic :: Software Development :: Libraries',
        'Topic :: System :: Networking :: Firewalls',
        'Topic :: System :: Systems Administration',
    ],
    test_suite='tests',
)