forked from jazzband/django-polymorphic
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setup.py added. Thanks to Andrew Ingram.
- Loading branch information
1 parent
c10577c
commit cf42a81
Showing
4 changed files
with
25 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,8 @@ pushreg | |
pbackup | ||
mcmd.py | ||
|
||
pip-log.txt | ||
build | ||
ppreadme.py | ||
ppdocs.py | ||
README.html | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
django_polymorphic was initially created by Bert Constantin in 2009/2010. | ||
django_polymorphic was created by Bert Constantin in 2009/2010. | ||
|
||
setup.py contributed by Andrew Ingram | ||
|
||
If you contributed code, test cases etc., your name should | ||
appear here as well. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from distutils.core import setup | ||
|
||
setup( | ||
name = 'django_polymorphic', | ||
version = '0.2', | ||
description = 'Seamless Polymorphic Inheritance for Django Models', | ||
author = 'Bert Constantin', | ||
author_email = 'bert.constantin@gmx.de', | ||
url = 'http://bserve.webhop.org/wiki/django_polymorphic', | ||
packages = [ 'polymorphic' ], | ||
) |