X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/7d801e715b70774ff4f2a238045385e093701a8e..21f878e8112cf1f9b732a6dbb77e70efa68a01aa:/apps/south/install/setup.py diff --git a/apps/south/install/setup.py b/apps/south/install/setup.py new file mode 100755 index 000000000..6da3d4afc --- /dev/null +++ b/apps/south/install/setup.py @@ -0,0 +1,13 @@ +#!/usr/bin/python + +from setuptools import setup, find_packages + +setup( + name='South', + version='0.3', + description='South: Migrations for Django', + author='Andrew Godwin & Andy McCurdy', + author_email='south@aeracode.org', + url='http://south.aeracode.org/', + packages=["south", "south.db", "south.management", "south.management.commands", "south.tests"], +)