-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·31 lines (28 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
os.environ['SOUTH_NO_MONKEY_PATCH'] = "1"
from south import __version__
setup(
name='South',
version=__version__,
description='South: Migrations for Django',
long_description='South 2 is a database migrations library for the Django web framework, implementing Django\'s native migrations from 1.7 for 1.4 - 1.6.',
author='Andrew Godwin',
author_email='[email protected]',
url='http://south.aeracode.org/',
download_url='http://south.aeracode.org/wiki/Download',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
packages=find_packages(),
)