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