Skip to content

Commit

Permalink
Fixed broken pip command in readme, added setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
skoczen committed Sep 15, 2011
1 parent eccc437 commit ef8bdb7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -11,7 +11,7 @@ Usage

## Installation ##

* pip install (from here, for the moment: `pip install -e git://git@github.com:GoodCloud/django-zebra.git#egg=zebra` )
* pip install (from here, for the moment): `pip install -e git://github.com/GoodCloud/django-zebra.git#egg=zebra`
* Add to `INSTALLED_APPS`
* Enjoy.

Expand Down
13 changes: 13 additions & 0 deletions setup.py
@@ -0,0 +1,13 @@
#/usr/bin/env python
import os
from setuptools import setup, find_packages

ROOT_DIR = os.path.dirname(__file__)
SOURCE_DIR = os.path.join(ROOT_DIR)

setup(
name = "zebra",
version = "0.1",
packages = find_packages(),
zip_safe = False,
)

0 comments on commit ef8bdb7

Please sign in to comment.