forked from jlaine/python-netfilter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·28 lines (26 loc) · 974 Bytes
/
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
#!/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='[email protected]',
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',
)