3 from setuptools import setup, find_packages
8 description='South: Migrations for Django',
9 long_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.',
10 author='Andrew Godwin & Andy McCurdy',
11 author_email='south@aeracode.org',
12 url='http://south.aeracode.org/',
13 download_url='http://south.aeracode.org/wiki/Download',
15 "Development Status :: 5 - Production/Stable",
16 "Framework :: Django",
17 "Intended Audience :: Developers",
18 "Intended Audience :: System Administrators",
19 "Intended Audience :: System Administrators",
20 "License :: OSI Approved :: Apache Software License",
21 "Operating System :: OS Independent",
22 "Topic :: Software Development"
24 packages=["south", "south.db", "south.management", "south.management.commands", "south.tests", "south.tests.fakeapp", "south.tests.fakeapp.migrations"],
25 package_dir = {"south" : ""},