-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (30 loc) · 1.11 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
#!/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
)