linkchecker/setup.py
2000-04-12 22:30:59 +00:00

20 lines
738 B
Python
Executable file

#!/usr/bin/env python
from distutils.core import setup
setup (name = "linkchecker",
version = "1.2.2",
description = "check links of HTML pages",
author = "Bastian Kleineidam",
author_email = "calvin@users.sourceforge.net",
url = "http://linkchecker.sourceforge.net/",
licence = "GPL",
packages = ['','DNS','linkcheck'],
# uncomment ext_modules to enable HTTPS support
# you must have an SSL library and the Python header
# files installed
ext_modules = [('ssl', {'sources': ['ssl.c'],
'include_dirs': ['/usr/include/openssl'],
'library_dirs': ['/usr/lib'],
'libs': ['ssl']})],
)