9e0958364c603aab9c3db3e7a97fc44a8681ba0a
[wolnelektury.git] / apps / south / setup.py
1 #!/usr/bin/python
2
3 from setuptools import setup, find_packages
4
5 setup(
6     name='South',
7     version='0.4',
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',
14     classifiers=[
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"
23     ],
24     packages=["south", "south.db", "south.management", "south.management.commands", "south.tests", "south.tests.fakeapp", "south.tests.fakeapp.migrations"],
25     package_dir = {"south" : ""},
26 )