2006-10-16 21:50:46 +00:00
|
|
|
import os
|
2006-12-30 06:17:21 +00:00
|
|
|
import sys
|
2013-04-03 10:42:33 +00:00
|
|
|
from distutils.sysconfig import get_python_lib
|
|
|
|
|
2015-01-28 12:35:27 +00:00
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
2012-05-21 23:28:58 +00:00
|
|
|
# Warn if we are installing over top of an existing installation. This can
|
|
|
|
# cause issues where files that were deleted from a more recent Django are
|
|
|
|
# still present in site-packages. See #18115.
|
|
|
|
overlay_warning = False
|
|
|
|
if "install" in sys.argv:
|
2013-03-29 19:49:37 +00:00
|
|
|
lib_paths = [get_python_lib()]
|
|
|
|
if lib_paths[0].startswith("/usr/lib/"):
|
|
|
|
# We have to try also with an explicit prefix of /usr/local in order to
|
|
|
|
# catch Debian's custom user site-packages directory.
|
|
|
|
lib_paths.append(get_python_lib(prefix="/usr/local"))
|
|
|
|
for lib_path in lib_paths:
|
2012-05-21 23:28:58 +00:00
|
|
|
existing_path = os.path.abspath(os.path.join(lib_path, "django"))
|
|
|
|
if os.path.exists(existing_path):
|
|
|
|
# We note the need for the warning here, but present it after the
|
|
|
|
# command is run, so it's more likely to be seen.
|
|
|
|
overlay_warning = True
|
|
|
|
break
|
|
|
|
|
2008-07-21 16:30:32 +00:00
|
|
|
|
2013-04-03 10:42:33 +00:00
|
|
|
EXCLUDE_FROM_PACKAGES = ['django.conf.project_template',
|
|
|
|
'django.conf.app_template',
|
|
|
|
'django.bin']
|
|
|
|
|
|
|
|
|
2006-12-13 06:07:15 +00:00
|
|
|
# Dynamically calculate the version based on django.VERSION.
|
2012-01-08 15:05:15 +00:00
|
|
|
version = __import__('django').get_version()
|
2006-12-13 06:07:15 +00:00
|
|
|
|
2013-04-03 10:42:33 +00:00
|
|
|
|
2005-07-15 19:49:10 +00:00
|
|
|
setup(
|
2013-04-03 10:42:33 +00:00
|
|
|
name='Django',
|
|
|
|
version=version,
|
|
|
|
url='http://www.djangoproject.com/',
|
|
|
|
author='Django Software Foundation',
|
|
|
|
author_email='foundation@djangoproject.com',
|
|
|
|
description=('A high-level Python Web framework that encourages '
|
|
|
|
'rapid development and clean, pragmatic design.'),
|
|
|
|
license='BSD',
|
2013-12-31 11:35:05 +00:00
|
|
|
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
|
|
|
|
include_package_data=True,
|
2014-01-21 16:40:52 +00:00
|
|
|
scripts=['django/bin/django-admin.py'],
|
2013-10-25 18:05:02 +00:00
|
|
|
entry_points={'console_scripts': [
|
2014-01-21 16:40:52 +00:00
|
|
|
'django-admin = django.core.management:execute_from_command_line',
|
2013-10-25 18:05:02 +00:00
|
|
|
]},
|
2014-04-17 18:28:09 +00:00
|
|
|
extras_require={
|
|
|
|
"bcrypt": ["bcrypt"],
|
|
|
|
},
|
2013-10-25 18:05:02 +00:00
|
|
|
zip_safe=False,
|
2013-04-03 10:42:33 +00:00
|
|
|
classifiers=[
|
2015-02-25 13:39:01 +00:00
|
|
|
'Development Status :: 2 - Pre-Alpha',
|
2011-03-28 02:14:19 +00:00
|
|
|
'Environment :: Web Environment',
|
|
|
|
'Framework :: Django',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
2013-06-18 10:15:10 +00:00
|
|
|
'Programming Language :: Python :: 2',
|
2011-03-28 02:14:19 +00:00
|
|
|
'Programming Language :: Python :: 2.7',
|
2013-06-18 10:15:10 +00:00
|
|
|
'Programming Language :: Python :: 3',
|
2014-03-30 18:46:05 +00:00
|
|
|
'Programming Language :: Python :: 3.4',
|
2015-08-17 12:34:34 +00:00
|
|
|
'Programming Language :: Python :: 3.5',
|
2011-03-28 02:14:19 +00:00
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
|
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
|
|
|
'Topic :: Internet :: WWW/HTTP :: WSGI',
|
|
|
|
'Topic :: Software Development :: Libraries :: Application Frameworks',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
2013-04-03 10:42:33 +00:00
|
|
|
],
|
2005-07-15 19:49:10 +00:00
|
|
|
)
|
2012-05-21 23:28:58 +00:00
|
|
|
|
2013-10-25 18:05:02 +00:00
|
|
|
|
2012-05-21 23:28:58 +00:00
|
|
|
if overlay_warning:
|
|
|
|
sys.stderr.write("""
|
|
|
|
|
|
|
|
========
|
|
|
|
WARNING!
|
|
|
|
========
|
|
|
|
|
|
|
|
You have just installed Django over top of an existing
|
|
|
|
installation, without removing it first. Because of this,
|
|
|
|
your install may now include extraneous files from a
|
|
|
|
previous version that have since been removed from
|
|
|
|
Django. This is known to cause a variety of problems. You
|
|
|
|
should manually remove the
|
|
|
|
|
|
|
|
%(existing_path)s
|
|
|
|
|
|
|
|
directory and re-install Django.
|
|
|
|
|
2013-04-03 10:42:33 +00:00
|
|
|
""" % {"existing_path": existing_path})
|