setup.py 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. #!/usr/bin/env python
  2. # Use setuptools if we can
  3. try:
  4. from setuptools.core import setup
  5. except ImportError:
  6. from distutils.core import setup
  7. from south import __version__
  8. setup(
  9. name='South',
  10. version=__version__,
  11. description='South: Migrations for Django',
  12. 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.',
  13. author='Andrew Godwin & Andy McCurdy',
  14. author_email='south@aeracode.org',
  15. url='http://south.aeracode.org/',
  16. download_url='http://south.aeracode.org/wiki/Download',
  17. classifiers=[
  18. "Development Status :: 5 - Production/Stable",
  19. "Framework :: Django",
  20. "Intended Audience :: Developers",
  21. "Intended Audience :: System Administrators",
  22. "Intended Audience :: System Administrators",
  23. "License :: OSI Approved :: Apache Software License",
  24. "Operating System :: OS Independent",
  25. "Topic :: Software Development",
  26. "Programming Language :: Python :: 3.3",
  27. "Programming Language :: Python :: 2.6",
  28. "Programming Language :: Python :: 2.7",
  29. ],
  30. packages=[
  31. 'south',
  32. 'south.creator',
  33. 'south.db',
  34. 'south.management',
  35. 'south.introspection_plugins',
  36. 'south.hacks',
  37. 'south.migration',
  38. 'south.tests',
  39. 'south.db.sql_server',
  40. 'south.management.commands',
  41. 'south.tests.circular_a',
  42. 'south.tests.emptyapp',
  43. 'south.tests.deps_a',
  44. 'south.tests.fakeapp',
  45. 'south.tests.brokenapp',
  46. 'south.tests.circular_b',
  47. 'south.tests.otherfakeapp',
  48. 'south.tests.deps_c',
  49. 'south.tests.deps_b',
  50. 'south.tests.non_managed',
  51. 'south.tests.circular_a.migrations',
  52. 'south.tests.emptyapp.migrations',
  53. 'south.tests.deps_a.migrations',
  54. 'south.tests.fakeapp.migrations',
  55. 'south.tests.brokenapp.migrations',
  56. 'south.tests.circular_b.migrations',
  57. 'south.tests.otherfakeapp.migrations',
  58. 'south.tests.deps_c.migrations',
  59. 'south.tests.deps_b.migrations',
  60. 'south.tests.non_managed.migrations',
  61. 'south.utils',
  62. ],
  63. )