File: setup.py

package info (click to toggle)
iptables-optimizer 0.9.14-1
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 316 kB
  • ctags: 99
  • sloc: python: 470; sh: 263; makefile: 174
file content (34 lines) | stat: -rw-r--r-- 1,132 bytes parent folder | download
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
#!/usr/bin/python

import sys
from setuptools import setup, find_packages

kw = {}
if sys.version_info >= (3,):
        kw['use_2to3'] = True


setup(name='iptables-optimizer',
    description='runtime iptables sorting by packet counters',
    long_description=open('README.txt').read(),
    version='0.9.14',
    license='GNU General Public License version 3 (or later)',
    platforms=['Linux'],
    author='Johannes Hubertz',
    author_email='johannes@hubertz.de',
    url='https://github.com/sl0/opti.git',
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
        'Intended Audience :: System Administrators',
        'Operating System :: POSIX :: Linux',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
        'Topic :: Security',
        'Topic :: System :: Networking :: Firewalls',
        'Topic :: Utilities',
    ],
    py_modules=['iptables_optimizer'],
    scripts=['iptables-optimizer', 'ip6tables-optimizer', 'iptables-optimizer-functions'],
    **kw
    )