Skip to content

Commit

Permalink
Added basic readme and setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ericholscher committed Sep 10, 2010
1 parent ccb9754 commit 0bd02f4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
A crawler using the Django Test Client.

15 changes: 15 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from distutils.core import setup

setup(
name = "django-crawler",
version = "0.1",
packages = [
"crawler",
"crawler.management",
"crawler.management.commands",
],
author = "Eric Holscher, Chris Adams",
author_email = "eric@ericholscher.com",
description = "A crawler using the Django Test Client",
url = "http://github.com/ericholscher/django-crawler/tree/master",
)

0 comments on commit 0bd02f4

Please sign in to comment.