mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-02 03:44:43 +00:00
22 lines
799 B
Python
22 lines
799 B
Python
|
|
#!/usr/bin/env python
|
||
|
|
from distutils.core import setup
|
||
|
|
|
||
|
|
setup (name = "linkchecker",
|
||
|
|
version = "1.1.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','distutils','distutils/command'],
|
||
|
|
# 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'],
|
||
|
|
# 'libs': ['ssl']})],
|
||
|
|
scripts = [('linkchecker.bat', 'nt')],
|
||
|
|
programs = ['linkchecker'],
|
||
|
|
)
|