Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
adding south
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonsavage committed Sep 20, 2012
1 parent 8f6344a commit 0c2d82b
Show file tree
Hide file tree
Showing 233 changed files with 11,247 additions and 0 deletions.
19 changes: 19 additions & 0 deletions lib/python/South-0.7.6-py2.7.egg-info/PKG-INFO
@@ -0,0 +1,19 @@
Metadata-Version: 1.0
Name: South
Version: 0.7.6
Summary: South: Migrations for Django
Home-page: http://south.aeracode.org/
Author: Andrew Godwin & Andy McCurdy
Author-email: south@aeracode.org
License: UNKNOWN
Download-URL: http://south.aeracode.org/wiki/Download
Description: South is an intelligent database migrations library for the Django web framework. It is database-independent and DVCS-friendly, as well as a whole host of other features.
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
121 changes: 121 additions & 0 deletions lib/python/South-0.7.6-py2.7.egg-info/SOURCES.txt
@@ -0,0 +1,121 @@
README
setup.cfg
setup.py
South.egg-info/PKG-INFO
South.egg-info/SOURCES.txt
South.egg-info/dependency_links.txt
South.egg-info/top_level.txt
south/__init__.py
south/exceptions.py
south/logger.py
south/models.py
south/modelsinspector.py
south/orm.py
south/signals.py
south/v2.py
south/creator/__init__.py
south/creator/actions.py
south/creator/changes.py
south/creator/freezer.py
south/db/__init__.py
south/db/firebird.py
south/db/generic.py
south/db/mysql.py
south/db/oracle.py
south/db/postgresql_psycopg2.py
south/db/sqlite3.py
south/db/sql_server/__init__.py
south/db/sql_server/pyodbc.py
south/hacks/__init__.py
south/hacks/django_1_0.py
south/introspection_plugins/__init__.py
south/introspection_plugins/annoying_autoonetoone.py
south/introspection_plugins/django_audit_log.py
south/introspection_plugins/django_objectpermissions.py
south/introspection_plugins/django_tagging.py
south/introspection_plugins/django_taggit.py
south/introspection_plugins/django_timezones.py
south/introspection_plugins/geodjango.py
south/management/__init__.py
south/management/commands/__init__.py
south/management/commands/convert_to_south.py
south/management/commands/datamigration.py
south/management/commands/graphmigrations.py
south/management/commands/migrate.py
south/management/commands/migrationcheck.py
south/management/commands/schemamigration.py
south/management/commands/startmigration.py
south/management/commands/syncdb.py
south/management/commands/test.py
south/management/commands/testserver.py
south/migration/__init__.py
south/migration/base.py
south/migration/migrators.py
south/migration/utils.py
south/tests/__init__.py
south/tests/autodetection.py
south/tests/db.py
south/tests/db_mysql.py
south/tests/freezer.py
south/tests/inspector.py
south/tests/logger.py
south/tests/logic.py
south/tests/brokenapp/__init__.py
south/tests/brokenapp/models.py
south/tests/brokenapp/migrations/0001_depends_on_unmigrated.py
south/tests/brokenapp/migrations/0002_depends_on_unknown.py
south/tests/brokenapp/migrations/0003_depends_on_higher.py
south/tests/brokenapp/migrations/0004_higher.py
south/tests/brokenapp/migrations/__init__.py
south/tests/circular_a/__init__.py
south/tests/circular_a/models.py
south/tests/circular_a/migrations/0001_first.py
south/tests/circular_a/migrations/__init__.py
south/tests/circular_b/__init__.py
south/tests/circular_b/models.py
south/tests/circular_b/migrations/0001_first.py
south/tests/circular_b/migrations/__init__.py
south/tests/deps_a/__init__.py
south/tests/deps_a/models.py
south/tests/deps_a/migrations/0001_a.py
south/tests/deps_a/migrations/0002_a.py
south/tests/deps_a/migrations/0003_a.py
south/tests/deps_a/migrations/0004_a.py
south/tests/deps_a/migrations/0005_a.py
south/tests/deps_a/migrations/__init__.py
south/tests/deps_b/__init__.py
south/tests/deps_b/models.py
south/tests/deps_b/migrations/0001_b.py
south/tests/deps_b/migrations/0002_b.py
south/tests/deps_b/migrations/0003_b.py
south/tests/deps_b/migrations/0004_b.py
south/tests/deps_b/migrations/0005_b.py
south/tests/deps_b/migrations/__init__.py
south/tests/deps_c/__init__.py
south/tests/deps_c/models.py
south/tests/deps_c/migrations/0001_c.py
south/tests/deps_c/migrations/0002_c.py
south/tests/deps_c/migrations/0003_c.py
south/tests/deps_c/migrations/0004_c.py
south/tests/deps_c/migrations/0005_c.py
south/tests/deps_c/migrations/__init__.py
south/tests/emptyapp/__init__.py
south/tests/emptyapp/models.py
south/tests/emptyapp/migrations/__init__.py
south/tests/fakeapp/__init__.py
south/tests/fakeapp/models.py
south/tests/fakeapp/migrations/0001_spam.py
south/tests/fakeapp/migrations/0002_eggs.py
south/tests/fakeapp/migrations/0003_alter_spam.py
south/tests/fakeapp/migrations/__init__.py
south/tests/non_managed/__init__.py
south/tests/non_managed/models.py
south/tests/non_managed/migrations/__init__.py
south/tests/otherfakeapp/__init__.py
south/tests/otherfakeapp/models.py
south/tests/otherfakeapp/migrations/0001_first.py
south/tests/otherfakeapp/migrations/0002_second.py
south/tests/otherfakeapp/migrations/0003_third.py
south/tests/otherfakeapp/migrations/__init__.py
south/utils/__init__.py
south/utils/datetime_utils.py
1 change: 1 addition & 0 deletions lib/python/South-0.7.6-py2.7.egg-info/dependency_links.txt
@@ -0,0 +1 @@

233 changes: 233 additions & 0 deletions lib/python/South-0.7.6-py2.7.egg-info/installed-files.txt
@@ -0,0 +1,233 @@
../south/__init__.py
../south/exceptions.py
../south/logger.py
../south/models.py
../south/modelsinspector.py
../south/orm.py
../south/signals.py
../south/v2.py
../south/creator/__init__.py
../south/creator/actions.py
../south/creator/changes.py
../south/creator/freezer.py
../south/db/__init__.py
../south/db/firebird.py
../south/db/generic.py
../south/db/mysql.py
../south/db/oracle.py
../south/db/postgresql_psycopg2.py
../south/db/sqlite3.py
../south/management/__init__.py
../south/introspection_plugins/__init__.py
../south/introspection_plugins/annoying_autoonetoone.py
../south/introspection_plugins/django_audit_log.py
../south/introspection_plugins/django_objectpermissions.py
../south/introspection_plugins/django_tagging.py
../south/introspection_plugins/django_taggit.py
../south/introspection_plugins/django_timezones.py
../south/introspection_plugins/geodjango.py
../south/hacks/__init__.py
../south/hacks/django_1_0.py
../south/migration/__init__.py
../south/migration/base.py
../south/migration/migrators.py
../south/migration/utils.py
../south/tests/__init__.py
../south/tests/autodetection.py
../south/tests/db.py
../south/tests/db_mysql.py
../south/tests/freezer.py
../south/tests/inspector.py
../south/tests/logger.py
../south/tests/logic.py
../south/db/sql_server/__init__.py
../south/db/sql_server/pyodbc.py
../south/management/commands/__init__.py
../south/management/commands/convert_to_south.py
../south/management/commands/datamigration.py
../south/management/commands/graphmigrations.py
../south/management/commands/migrate.py
../south/management/commands/migrationcheck.py
../south/management/commands/schemamigration.py
../south/management/commands/startmigration.py
../south/management/commands/syncdb.py
../south/management/commands/test.py
../south/management/commands/testserver.py
../south/tests/circular_a/__init__.py
../south/tests/circular_a/models.py
../south/tests/emptyapp/__init__.py
../south/tests/emptyapp/models.py
../south/tests/deps_a/__init__.py
../south/tests/deps_a/models.py
../south/tests/fakeapp/__init__.py
../south/tests/fakeapp/models.py
../south/tests/brokenapp/__init__.py
../south/tests/brokenapp/models.py
../south/tests/circular_b/__init__.py
../south/tests/circular_b/models.py
../south/tests/otherfakeapp/__init__.py
../south/tests/otherfakeapp/models.py
../south/tests/deps_c/__init__.py
../south/tests/deps_c/models.py
../south/tests/deps_b/__init__.py
../south/tests/deps_b/models.py
../south/tests/non_managed/__init__.py
../south/tests/non_managed/models.py
../south/tests/circular_a/migrations/0001_first.py
../south/tests/circular_a/migrations/__init__.py
../south/tests/emptyapp/migrations/__init__.py
../south/tests/deps_a/migrations/0001_a.py
../south/tests/deps_a/migrations/0002_a.py
../south/tests/deps_a/migrations/0003_a.py
../south/tests/deps_a/migrations/0004_a.py
../south/tests/deps_a/migrations/0005_a.py
../south/tests/deps_a/migrations/__init__.py
../south/tests/fakeapp/migrations/0001_spam.py
../south/tests/fakeapp/migrations/0002_eggs.py
../south/tests/fakeapp/migrations/0003_alter_spam.py
../south/tests/fakeapp/migrations/__init__.py
../south/tests/brokenapp/migrations/0001_depends_on_unmigrated.py
../south/tests/brokenapp/migrations/0002_depends_on_unknown.py
../south/tests/brokenapp/migrations/0003_depends_on_higher.py
../south/tests/brokenapp/migrations/0004_higher.py
../south/tests/brokenapp/migrations/__init__.py
../south/tests/circular_b/migrations/0001_first.py
../south/tests/circular_b/migrations/__init__.py
../south/tests/otherfakeapp/migrations/0001_first.py
../south/tests/otherfakeapp/migrations/0002_second.py
../south/tests/otherfakeapp/migrations/0003_third.py
../south/tests/otherfakeapp/migrations/__init__.py
../south/tests/deps_c/migrations/0001_c.py
../south/tests/deps_c/migrations/0002_c.py
../south/tests/deps_c/migrations/0003_c.py
../south/tests/deps_c/migrations/0004_c.py
../south/tests/deps_c/migrations/0005_c.py
../south/tests/deps_c/migrations/__init__.py
../south/tests/deps_b/migrations/0001_b.py
../south/tests/deps_b/migrations/0002_b.py
../south/tests/deps_b/migrations/0003_b.py
../south/tests/deps_b/migrations/0004_b.py
../south/tests/deps_b/migrations/0005_b.py
../south/tests/deps_b/migrations/__init__.py
../south/tests/non_managed/migrations/__init__.py
../south/utils/__init__.py
../south/utils/datetime_utils.py
../south/__init__.pyc
../south/exceptions.pyc
../south/logger.pyc
../south/models.pyc
../south/modelsinspector.pyc
../south/orm.pyc
../south/signals.pyc
../south/v2.pyc
../south/creator/__init__.pyc
../south/creator/actions.pyc
../south/creator/changes.pyc
../south/creator/freezer.pyc
../south/db/__init__.pyc
../south/db/firebird.pyc
../south/db/generic.pyc
../south/db/mysql.pyc
../south/db/oracle.pyc
../south/db/postgresql_psycopg2.pyc
../south/db/sqlite3.pyc
../south/management/__init__.pyc
../south/introspection_plugins/__init__.pyc
../south/introspection_plugins/annoying_autoonetoone.pyc
../south/introspection_plugins/django_audit_log.pyc
../south/introspection_plugins/django_objectpermissions.pyc
../south/introspection_plugins/django_tagging.pyc
../south/introspection_plugins/django_taggit.pyc
../south/introspection_plugins/django_timezones.pyc
../south/introspection_plugins/geodjango.pyc
../south/hacks/__init__.pyc
../south/hacks/django_1_0.pyc
../south/migration/__init__.pyc
../south/migration/base.pyc
../south/migration/migrators.pyc
../south/migration/utils.pyc
../south/tests/__init__.pyc
../south/tests/autodetection.pyc
../south/tests/db.pyc
../south/tests/db_mysql.pyc
../south/tests/freezer.pyc
../south/tests/inspector.pyc
../south/tests/logger.pyc
../south/tests/logic.pyc
../south/db/sql_server/__init__.pyc
../south/db/sql_server/pyodbc.pyc
../south/management/commands/__init__.pyc
../south/management/commands/convert_to_south.pyc
../south/management/commands/datamigration.pyc
../south/management/commands/graphmigrations.pyc
../south/management/commands/migrate.pyc
../south/management/commands/migrationcheck.pyc
../south/management/commands/schemamigration.pyc
../south/management/commands/startmigration.pyc
../south/management/commands/syncdb.pyc
../south/management/commands/test.pyc
../south/management/commands/testserver.pyc
../south/tests/circular_a/__init__.pyc
../south/tests/circular_a/models.pyc
../south/tests/emptyapp/__init__.pyc
../south/tests/emptyapp/models.pyc
../south/tests/deps_a/__init__.pyc
../south/tests/deps_a/models.pyc
../south/tests/fakeapp/__init__.pyc
../south/tests/fakeapp/models.pyc
../south/tests/brokenapp/__init__.pyc
../south/tests/brokenapp/models.pyc
../south/tests/circular_b/__init__.pyc
../south/tests/circular_b/models.pyc
../south/tests/otherfakeapp/__init__.pyc
../south/tests/otherfakeapp/models.pyc
../south/tests/deps_c/__init__.pyc
../south/tests/deps_c/models.pyc
../south/tests/deps_b/__init__.pyc
../south/tests/deps_b/models.pyc
../south/tests/non_managed/__init__.pyc
../south/tests/non_managed/models.pyc
../south/tests/circular_a/migrations/0001_first.pyc
../south/tests/circular_a/migrations/__init__.pyc
../south/tests/emptyapp/migrations/__init__.pyc
../south/tests/deps_a/migrations/0001_a.pyc
../south/tests/deps_a/migrations/0002_a.pyc
../south/tests/deps_a/migrations/0003_a.pyc
../south/tests/deps_a/migrations/0004_a.pyc
../south/tests/deps_a/migrations/0005_a.pyc
../south/tests/deps_a/migrations/__init__.pyc
../south/tests/fakeapp/migrations/0001_spam.pyc
../south/tests/fakeapp/migrations/0002_eggs.pyc
../south/tests/fakeapp/migrations/0003_alter_spam.pyc
../south/tests/fakeapp/migrations/__init__.pyc
../south/tests/brokenapp/migrations/0001_depends_on_unmigrated.pyc
../south/tests/brokenapp/migrations/0002_depends_on_unknown.pyc
../south/tests/brokenapp/migrations/0003_depends_on_higher.pyc
../south/tests/brokenapp/migrations/0004_higher.pyc
../south/tests/brokenapp/migrations/__init__.pyc
../south/tests/circular_b/migrations/0001_first.pyc
../south/tests/circular_b/migrations/__init__.pyc
../south/tests/otherfakeapp/migrations/0001_first.pyc
../south/tests/otherfakeapp/migrations/0002_second.pyc
../south/tests/otherfakeapp/migrations/0003_third.pyc
../south/tests/otherfakeapp/migrations/__init__.pyc
../south/tests/deps_c/migrations/0001_c.pyc
../south/tests/deps_c/migrations/0002_c.pyc
../south/tests/deps_c/migrations/0003_c.pyc
../south/tests/deps_c/migrations/0004_c.pyc
../south/tests/deps_c/migrations/0005_c.pyc
../south/tests/deps_c/migrations/__init__.pyc
../south/tests/deps_b/migrations/0001_b.pyc
../south/tests/deps_b/migrations/0002_b.pyc
../south/tests/deps_b/migrations/0003_b.pyc
../south/tests/deps_b/migrations/0004_b.pyc
../south/tests/deps_b/migrations/0005_b.pyc
../south/tests/deps_b/migrations/__init__.pyc
../south/tests/non_managed/migrations/__init__.pyc
../south/utils/__init__.pyc
../south/utils/datetime_utils.pyc
./
dependency_links.txt
PKG-INFO
SOURCES.txt
top_level.txt
1 change: 1 addition & 0 deletions lib/python/South-0.7.6-py2.7.egg-info/top_level.txt
@@ -0,0 +1 @@
south
9 changes: 9 additions & 0 deletions lib/python/south/__init__.py
@@ -0,0 +1,9 @@
"""
South - Useable migrations for Django apps
"""

__version__ = "0.7.6"
__authors__ = [
"Andrew Godwin <andrew@aeracode.org>",
"Andy McCurdy <andy@andymccurdy.com>"
]
Binary file added lib/python/south/__init__.pyc
Binary file not shown.
5 changes: 5 additions & 0 deletions lib/python/south/creator/__init__.py
@@ -0,0 +1,5 @@
"""
The creator module is responsible for making new migration files, either
as blank templates or autodetecting changes. It contains code that used to
all be in startmigration.py.
"""
Binary file added lib/python/south/creator/__init__.pyc
Binary file not shown.

0 comments on commit 0c2d82b

Please sign in to comment.