1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-09 14:11:29 +00:00
Files
nmap/ndiff/setup.py
2008-09-18 23:31:19 +00:00

20 lines
599 B
Python

#!/usr/bin/env python
from distutils.core import setup
from distutils.cmd import Command
class null_command(Command):
"""This is a dummy distutils command that does nothing. We use it to replace
the install_egg_info and avoid installing a .egg-info file, because there's
no option to disable that."""
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
pass
setup(name = u"ndiff", scripts = [u"ndiff"],
data_files = [(u"share/man/man1", [u"docs/ndiff.1"])],
cmdclass = {"install_egg_info": null_command})