-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 930 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
from distutils.core import setup
with open('README.pypi') as f:
long_description = f.read()
setup(
name='oinkwall',
packages=['oinkwall'],
version='0.5',
description='Python module for programmatically creating low level iptables rule sets.',
long_description=long_description,
author='Hans van Kranenburg',
author_email='[email protected]',
url='https://github.com/knorrie/python-oinkwall',
download_url='https://github.com/knorrie/python-oinkwall/tarball/v0.5',
keywords=['firewall', 'iptables', 'ipv6'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Topic :: System :: Systems Administration',
'Topic :: System :: Networking',
'Topic :: System :: Networking :: Firewalls',
],
)