mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-26 00:54:43 +00:00
added setup.py
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@36 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
9374f46e76
commit
c912cfc2d4
1 changed files with 21 additions and 0 deletions
21
setup.py
Executable file
21
setup.py
Executable file
|
|
@ -0,0 +1,21 @@
|
|||
#!/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'],
|
||||
)
|
||||
Loading…
Reference in a new issue