GUI editor to tame mod_security rules

⌈⌋ ⎇ branch:  modseccfg


Artifact [877f01945c]

Artifact 877f01945c4b1bf83d5541099e7464eeffa2698bbcf95fdf5e1e14f319115009:

  • Executable file setup.py — part of check-in [fd5f570868] at 2020-11-13 15:20:26 on branch trunk — Update README with GIF, use .rst for pkg README. (user: mario size: 461)

#!/usr/bin/env python3
# encoding: utf-8
# api: pip
# type: build
# title: config for setuptools
#
# Always prefer setuptools over distutils
#

from pluginconf.setup import setup

setup(
    fn="modseccfg/__init__.py",
    name="modseccfg",
    long_description="README.rst",
    package_dir={"": "."},
    package_data={},
    data_files=[],
    entry_points={
        "console_scripts": [
            "modseccfg=modseccfg.mainwindow:main",
        ]
    }
)