webcheck commit: r462 - webcheck
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
webcheck commit: r462 - 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: r462 - webcheck
- Date: Wed, 16 Nov 2011 12:17:29 +0100 (CET)
Author: devin
Date: Wed Nov 16 12:17:29 2011
New Revision: 462
URL: http://arthurdejong.org/viewvc/webcheck?revision=462&view=revision
Log:
add setup.py
Added:
webcheck/setup.py
Added: webcheck/setup.py
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ webcheck/setup.py Wed Nov 16 12:17:29 2011 (r462)
@@ -0,0 +1,20 @@
+from setuptools import setup, find_packages
+setup(
+ name = 'webcheck',
+ version = '1.10.5a',
+ packages = find_packages(),
+ scripts = ['cmd.py'],
+ install_requires = ['distribute', 'sqlalchemy'],
+ extras_require = {
+ 'tidy': ['utidylib'],
+ 'soup': ['beautifulsoup'],
+ },
+
+ # metadata for pypi
+ author = 'Arthur de Jong',
+ author_email = 'arthur@arthurdejong.org',
+ description = 'webcheck is a website checking tool for webmasters',
+ license = 'GPL',
+ keywords = 'spider',
+ url = 'http://arthurdejong.org/webcheck/',
+)
--
To unsubscribe send an email to
webcheck-commits-unsubscribe@lists.arthurdejong.org or see
http://lists.arthurdejong.org/webcheck-commits/
- webcheck commit: r462 - webcheck,
Commits of the webcheck project