2009-09-10 07:50:51 +00:00
|
|
|
#
|
|
|
|
# Copyright 2009 Facebook
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
|
2014-01-17 03:32:32 +00:00
|
|
|
import os
|
2013-11-05 22:39:03 +00:00
|
|
|
import platform
|
2017-10-22 16:20:18 +00:00
|
|
|
import ssl
|
2009-09-10 07:50:51 +00:00
|
|
|
import sys
|
2013-11-05 22:58:45 +00:00
|
|
|
import warnings
|
2013-11-05 20:53:51 +00:00
|
|
|
|
2012-02-20 08:40:19 +00:00
|
|
|
try:
|
2013-11-05 20:53:51 +00:00
|
|
|
# Use setuptools if available, for install_requires (among other things).
|
2012-02-20 08:40:19 +00:00
|
|
|
import setuptools
|
2013-11-05 20:53:51 +00:00
|
|
|
from setuptools import setup
|
2012-02-20 08:40:19 +00:00
|
|
|
except ImportError:
|
2013-11-05 20:53:51 +00:00
|
|
|
setuptools = None
|
|
|
|
from distutils.core import setup
|
2009-09-10 07:50:51 +00:00
|
|
|
|
2013-11-05 22:39:03 +00:00
|
|
|
from distutils.core import Extension
|
2013-10-25 19:46:13 +00:00
|
|
|
|
2013-11-05 22:58:45 +00:00
|
|
|
# The following code is copied from
|
|
|
|
# https://github.com/mongodb/mongo-python-driver/blob/master/setup.py
|
|
|
|
# to support installing without the extension on platforms where
|
|
|
|
# no compiler is available.
|
|
|
|
from distutils.command.build_ext import build_ext
|
|
|
|
|
2015-02-18 03:33:36 +00:00
|
|
|
|
2013-11-05 22:58:45 +00:00
|
|
|
class custom_build_ext(build_ext):
|
|
|
|
"""Allow C extension building to fail.
|
|
|
|
|
|
|
|
The C extension speeds up websocket masking, but is not essential.
|
|
|
|
"""
|
|
|
|
|
|
|
|
warning_message = """
|
|
|
|
********************************************************************
|
|
|
|
WARNING: %s could not
|
|
|
|
be compiled. No C extensions are essential for Tornado to run,
|
|
|
|
although they do result in significant speed improvements for
|
|
|
|
websockets.
|
|
|
|
%s
|
|
|
|
|
|
|
|
Here are some hints for popular operating systems:
|
|
|
|
|
|
|
|
If you are seeing this message on Linux you probably need to
|
|
|
|
install GCC and/or the Python development package for your
|
|
|
|
version of Python.
|
|
|
|
|
|
|
|
Debian and Ubuntu users should issue the following command:
|
|
|
|
|
|
|
|
$ sudo apt-get install build-essential python-dev
|
|
|
|
|
2015-12-29 22:15:35 +00:00
|
|
|
RedHat and CentOS users should issue the following command:
|
2013-11-05 22:58:45 +00:00
|
|
|
|
|
|
|
$ sudo yum install gcc python-devel
|
|
|
|
|
2015-12-29 22:15:35 +00:00
|
|
|
Fedora users should issue the following command:
|
|
|
|
|
|
|
|
$ sudo dnf install gcc python-devel
|
|
|
|
|
2013-11-05 22:58:45 +00:00
|
|
|
If you are seeing this message on OSX please read the documentation
|
|
|
|
here:
|
|
|
|
|
|
|
|
http://api.mongodb.org/python/current/installation.html#osx
|
|
|
|
********************************************************************
|
|
|
|
"""
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
try:
|
|
|
|
build_ext.run(self)
|
2014-07-17 00:23:42 +00:00
|
|
|
except Exception:
|
2013-11-05 22:58:45 +00:00
|
|
|
e = sys.exc_info()[1]
|
|
|
|
sys.stdout.write('%s\n' % str(e))
|
|
|
|
warnings.warn(self.warning_message % ("Extension modules",
|
|
|
|
"There was an issue with "
|
|
|
|
"your platform configuration"
|
|
|
|
" - see above."))
|
|
|
|
|
|
|
|
def build_extension(self, ext):
|
|
|
|
name = ext.name
|
2014-06-07 15:08:52 +00:00
|
|
|
try:
|
|
|
|
build_ext.build_extension(self, ext)
|
2014-07-17 00:23:42 +00:00
|
|
|
except Exception:
|
2014-06-07 15:08:52 +00:00
|
|
|
e = sys.exc_info()[1]
|
|
|
|
sys.stdout.write('%s\n' % str(e))
|
2013-11-05 22:58:45 +00:00
|
|
|
warnings.warn(self.warning_message % ("The %s extension "
|
|
|
|
"module" % (name,),
|
2014-06-07 15:08:52 +00:00
|
|
|
"The output above "
|
|
|
|
"this warning shows how "
|
|
|
|
"the compilation "
|
|
|
|
"failed."))
|
2013-11-05 22:58:45 +00:00
|
|
|
|
|
|
|
|
2011-05-15 01:47:12 +00:00
|
|
|
kwargs = {}
|
|
|
|
|
2018-04-07 23:07:49 +00:00
|
|
|
version = "5.0.2"
|
2010-09-09 17:06:47 +00:00
|
|
|
|
2013-03-29 13:48:45 +00:00
|
|
|
with open('README.rst') as f:
|
2013-11-05 20:53:51 +00:00
|
|
|
kwargs['long_description'] = f.read()
|
2013-03-29 13:48:45 +00:00
|
|
|
|
2014-01-17 03:32:32 +00:00
|
|
|
if (platform.python_implementation() == 'CPython' and
|
2015-02-18 03:33:36 +00:00
|
|
|
os.environ.get('TORNADO_EXTENSION') != '0'):
|
2013-11-05 22:39:03 +00:00
|
|
|
# This extension builds and works on pypy as well, although pypy's jit
|
|
|
|
# produces equivalent performance.
|
|
|
|
kwargs['ext_modules'] = [
|
|
|
|
Extension('tornado.speedups',
|
|
|
|
sources=['tornado/speedups.c']),
|
|
|
|
]
|
2013-11-05 20:53:51 +00:00
|
|
|
|
2014-01-17 03:32:32 +00:00
|
|
|
if os.environ.get('TORNADO_EXTENSION') != '1':
|
|
|
|
# Unless the user has specified that the extension is mandatory,
|
|
|
|
# fall back to the pure-python implementation on any build failure.
|
|
|
|
kwargs['cmdclass'] = {'build_ext': custom_build_ext}
|
|
|
|
|
2014-04-28 01:03:08 +00:00
|
|
|
|
2013-11-05 20:53:51 +00:00
|
|
|
if setuptools is not None:
|
|
|
|
# If setuptools is not available, you're on your own for dependencies.
|
2015-02-18 03:33:36 +00:00
|
|
|
install_requires = []
|
2017-12-23 02:14:15 +00:00
|
|
|
if sys.version_info < (3, 2):
|
|
|
|
install_requires.append('futures')
|
2015-02-18 03:33:36 +00:00
|
|
|
if sys.version_info < (3, 4):
|
2015-10-18 20:34:47 +00:00
|
|
|
install_requires.append('singledispatch')
|
|
|
|
if sys.version_info < (3, 5):
|
|
|
|
install_requires.append('backports_abc>=0.4')
|
2014-04-28 01:03:08 +00:00
|
|
|
kwargs['install_requires'] = install_requires
|
2013-10-25 19:46:13 +00:00
|
|
|
|
2017-12-27 18:05:22 +00:00
|
|
|
python_requires = '>= 2.7, !=3.0.*, !=3.1.*, !=3.2.*, != 3.3.*'
|
|
|
|
kwargs['python_requires'] = python_requires
|
|
|
|
|
2017-10-22 16:20:18 +00:00
|
|
|
# Verify that the SSL module has all the modern upgrades. Check for several
|
|
|
|
# names individually since they were introduced at different versions,
|
|
|
|
# although they should all be present by Python 3.4 or 2.7.9.
|
|
|
|
if (not hasattr(ssl, 'SSLContext') or
|
|
|
|
not hasattr(ssl, 'create_default_context') or
|
|
|
|
not hasattr(ssl, 'match_hostname')):
|
|
|
|
raise ImportError("Tornado requires an up-to-date SSL module. This means "
|
|
|
|
"Python 2.7.9+ or 3.4+ (although some distributions have "
|
|
|
|
"backported the necessary changes to older versions).")
|
|
|
|
|
2013-12-01 21:01:35 +00:00
|
|
|
setup(
|
2009-09-10 07:50:51 +00:00
|
|
|
name="tornado",
|
2010-09-09 17:06:47 +00:00
|
|
|
version=version,
|
2015-02-18 03:33:36 +00:00
|
|
|
packages=["tornado", "tornado.test", "tornado.platform"],
|
|
|
|
package_data={
|
2012-06-14 08:41:04 +00:00
|
|
|
# data files need to be listed both here (which determines what gets
|
|
|
|
# installed) and in MANIFEST.in (which determines what gets included
|
|
|
|
# in the sdist tarball)
|
|
|
|
"tornado.test": [
|
|
|
|
"README",
|
|
|
|
"csv_translations/fr_FR.csv",
|
|
|
|
"gettext_translations/fr_FR/LC_MESSAGES/tornado_test.mo",
|
|
|
|
"gettext_translations/fr_FR/LC_MESSAGES/tornado_test.po",
|
2013-03-28 02:55:04 +00:00
|
|
|
"options_test.cfg",
|
|
|
|
"static/robots.txt",
|
2015-07-30 20:12:56 +00:00
|
|
|
"static/sample.xml",
|
|
|
|
"static/sample.xml.gz",
|
|
|
|
"static/sample.xml.bz2",
|
2013-05-19 16:41:12 +00:00
|
|
|
"static/dir/index.html",
|
2015-07-17 15:36:53 +00:00
|
|
|
"static_foo.txt",
|
2013-03-28 02:55:04 +00:00
|
|
|
"templates/utf8.html",
|
|
|
|
"test.crt",
|
|
|
|
"test.key",
|
2017-12-31 18:44:42 +00:00
|
|
|
],
|
|
|
|
},
|
2009-09-10 07:50:51 +00:00
|
|
|
author="Facebook",
|
|
|
|
author_email="python-tornado@googlegroups.com",
|
|
|
|
url="http://www.tornadoweb.org/",
|
|
|
|
license="http://www.apache.org/licenses/LICENSE-2.0",
|
2018-01-01 22:46:05 +00:00
|
|
|
description=("Tornado is a Python web framework and asynchronous networking library,"
|
|
|
|
" originally developed at FriendFeed."),
|
2013-02-18 15:46:48 +00:00
|
|
|
classifiers=[
|
|
|
|
'License :: OSI Approved :: Apache Software License',
|
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 3',
|
2013-12-30 19:17:57 +00:00
|
|
|
'Programming Language :: Python :: 3.4',
|
2017-01-08 16:19:30 +00:00
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
2013-02-18 15:46:48 +00:00
|
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
|
|
'Programming Language :: Python :: Implementation :: PyPy',
|
2017-12-31 18:44:42 +00:00
|
|
|
],
|
2011-05-15 01:47:12 +00:00
|
|
|
**kwargs
|
2009-09-10 07:50:51 +00:00
|
|
|
)
|