forked from secgroup/Mignis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 964 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
29
30
31
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='mignis',
py_modules=['mignis', 'ipaddr_ext'],
version='0.9.5',
license='MIT',
description='Mignis is a semantic based tool for firewall configuration',
long_description=readme(),
url='https://github.com/segroup/Mignis',
keywords=['iptables', 'firewall', 'semantic firewall configuration', 'netfilter'],
install_requires=['ipaddr'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: System :: Networking :: Firewalls'
],
entry_points={'console_scripts': ['mignis = mignis:main']},
)