webcheck commit: r470 - in webcheck: . webcheck
[
Date Prev][Date Next]
[
Thread Prev][Thread Next]
webcheck commit: r470 - in webcheck: . webcheck
- From: Commits of the webcheck project <webcheck-commits [at] lists.arthurdejong.org>
- To: webcheck-commits [at] lists.arthurdejong.org
- Reply-to: webcheck-users [at] lists.arthurdejong.org
- Subject: webcheck commit: r470 - in webcheck: . webcheck
- Date: Sat, 19 Nov 2011 15:06:16 +0100 (CET)
Author: devin
Date: Sat Nov 19 15:06:14 2011
New Revision: 470
URL: http://arthurdejong.org/viewvc/webcheck?revision=470&view=revision
Log:
now setup.py gets homepage and version from webcheck/__init__.py
Added:
webcheck/run.py
- copied, changed from r469, webcheck/cmd.py
Deleted:
webcheck/cmd.py
Modified:
webcheck/setup.py
webcheck/webcheck/__init__.py
webcheck/webcheck/cmd.py
Copied and modified: webcheck/run.py (from r469, webcheck/cmd.py)
==============================================================================
--- webcheck/cmd.py Wed Nov 16 13:28:08 2011 (r469, copy source)
+++ webcheck/run.py Sat Nov 19 15:06:14 2011 (r470)
@@ -27,7 +27,8 @@
import sys, os, logging
-from webcheck.cmd import Crawler, parse_args, main
+from webcheck.crawler import Crawler
+from webcheck.cmd import parse_args, main
from webcheck import config
# Whether to produce profiling information. This is for development
Modified: webcheck/setup.py
==============================================================================
--- webcheck/setup.py Wed Nov 16 13:28:08 2011 (r469)
+++ webcheck/setup.py Sat Nov 19 15:06:14 2011 (r470)
@@ -1,7 +1,10 @@
from setuptools import setup, find_packages
+
+from webcheck import __version__, __homepage__
+
setup(
name = 'webcheck',
- version = '1.10.5a',
+ version = __version__,
packages = find_packages(),
entry_points = {
'console_scripts': [
@@ -20,5 +23,5 @@
description = 'webcheck is a website checking tool for webmasters',
license = 'GPL',
keywords = 'spider',
- url = 'http://arthurdejong.org/webcheck/',
+ url = __homepage__,
)
Modified: webcheck/webcheck/__init__.py
==============================================================================
--- webcheck/webcheck/__init__.py Wed Nov 16 13:28:08 2011 (r469)
+++ webcheck/webcheck/__init__.py Sat Nov 19 15:06:14 2011 (r470)
@@ -21,7 +21,6 @@
# The files produced as output from the software do not automatically fall
# under the copyright of the software, unless explicitly stated otherwise.
-__version__ = '1.10.4'
+__version__ = '2.0b'
__homepage__ = 'http://arthurdejong.org/webcheck/'
-from webcheck.crawler import Crawler
Modified: webcheck/webcheck/cmd.py
==============================================================================
--- webcheck/webcheck/cmd.py Wed Nov 16 13:28:08 2011 (r469)
+++ webcheck/webcheck/cmd.py Sat Nov 19 15:06:14 2011 (r470)
@@ -35,8 +35,8 @@
import webcheck
import webcheck.monkeypatch
-from webcheck import config, Crawler
-
+from webcheck import config
+from webcheck.crawler import Crawler
# The loglevel to use for the logger that is configured.
LOGLEVEL = logging.INFO
--
To unsubscribe send an email to
webcheck-commits-unsubscribe@lists.arthurdejong.org or see
http://lists.arthurdejong.org/webcheck-commits/
- webcheck commit: r470 - in webcheck: . webcheck,
Commits of the webcheck project