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.
|
|
|
|
|
2019-11-04 01:35:01 +00:00
|
|
|
# type: ignore
|
|
|
|
|
2014-01-17 03:32:32 +00:00
|
|
|
import os
|
2013-11-05 22:39:03 +00:00
|
|
|
import platform
|
2022-06-17 18:11:21 +00:00
|
|
|
import setuptools
|
2013-11-05 20:53:51 +00:00
|
|
|
|
2012-02-20 08:40:19 +00:00
|
|
|
try:
|
2022-06-17 18:11:21 +00:00
|
|
|
import wheel.bdist_wheel
|
2012-02-20 08:40:19 +00:00
|
|
|
except ImportError:
|
2022-06-17 18:11:21 +00:00
|
|
|
wheel = None
|
2013-11-05 22:58:45 +00:00
|
|
|
|
|
|
|
|
2011-05-15 01:47:12 +00:00
|
|
|
kwargs = {}
|
|
|
|
|
2019-01-02 03:43:10 +00:00
|
|
|
with open("tornado/__init__.py") as f:
|
|
|
|
ns = {}
|
|
|
|
exec(f.read(), ns)
|
|
|
|
version = ns["version"]
|
2010-09-09 17:06:47 +00:00
|
|
|
|
2018-10-07 03:13:06 +00:00
|
|
|
with open("README.rst") as f:
|
|
|
|
kwargs["long_description"] = f.read()
|
2022-06-10 18:14:23 +00:00
|
|
|
kwargs["long_description_content_type"] = "text/x-rst"
|
2013-03-29 13:48:45 +00:00
|
|
|
|
2018-10-07 03:13:06 +00:00
|
|
|
if (
|
|
|
|
platform.python_implementation() == "CPython"
|
|
|
|
and 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.
|
2018-10-07 03:13:06 +00:00
|
|
|
kwargs["ext_modules"] = [
|
2022-06-17 18:11:21 +00:00
|
|
|
setuptools.Extension(
|
|
|
|
"tornado.speedups",
|
|
|
|
sources=["tornado/speedups.c"],
|
|
|
|
# Unless the user has specified that the extension is mandatory,
|
|
|
|
# fall back to the pure-python implementation on any build failure.
|
|
|
|
optional=os.environ.get("TORNADO_EXTENSION") != "1",
|
|
|
|
# Use the stable ABI so our wheels are compatible across python
|
|
|
|
# versions.
|
|
|
|
py_limited_api=True,
|
2022-11-19 22:20:33 +00:00
|
|
|
define_macros=[("Py_LIMITED_API", "0x03080000")],
|
2022-06-17 18:11:21 +00:00
|
|
|
)
|
2013-11-05 22:39:03 +00:00
|
|
|
]
|
2013-11-05 20:53:51 +00:00
|
|
|
|
2022-06-17 18:11:21 +00:00
|
|
|
if wheel is not None:
|
|
|
|
# From https://github.com/joerick/python-abi3-package-sample/blob/main/setup.py
|
|
|
|
class bdist_wheel_abi3(wheel.bdist_wheel.bdist_wheel):
|
|
|
|
def get_tag(self):
|
|
|
|
python, abi, plat = super().get_tag()
|
|
|
|
|
|
|
|
if python.startswith("cp"):
|
2022-11-19 22:20:33 +00:00
|
|
|
return "cp38", "abi3", plat
|
2022-06-17 18:11:21 +00:00
|
|
|
return python, abi, plat
|
2014-01-17 03:32:32 +00:00
|
|
|
|
2022-06-17 18:11:21 +00:00
|
|
|
kwargs["cmdclass"] = {"bdist_wheel": bdist_wheel_abi3}
|
2014-04-28 01:03:08 +00:00
|
|
|
|
2017-12-27 18:05:22 +00:00
|
|
|
|
2022-06-17 18:11:21 +00:00
|
|
|
setuptools.setup(
|
2009-09-10 07:50:51 +00:00
|
|
|
name="tornado",
|
2010-09-09 17:06:47 +00:00
|
|
|
version=version,
|
2022-11-19 22:20:33 +00:00
|
|
|
python_requires=">= 3.8",
|
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)
|
2018-10-07 03:33:56 +00:00
|
|
|
"tornado": ["py.typed"],
|
2012-06-14 08:41:04 +00:00
|
|
|
"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",
|
2016-04-30 20:40:03 +00:00
|
|
|
"options_test_types.cfg",
|
2016-05-25 19:07:38 +00:00
|
|
|
"options_test_types_str.cfg",
|
2013-03-28 02:55:04 +00:00
|
|
|
"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",
|
2018-10-07 03:33:56 +00:00
|
|
|
],
|
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/",
|
2022-02-28 14:22:33 +00:00
|
|
|
project_urls={
|
|
|
|
"Source": "https://github.com/tornadoweb/tornado",
|
|
|
|
},
|
2023-03-31 13:26:28 +00:00
|
|
|
license="Apache-2.0",
|
2018-10-07 03:13:06 +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=[
|
2018-10-07 03:13:06 +00:00
|
|
|
"License :: OSI Approved :: Apache Software License",
|
|
|
|
"Programming Language :: Python :: 3",
|
2020-02-19 19:20:45 +00:00
|
|
|
"Programming Language :: Python :: 3.8",
|
2020-09-30 14:52:21 +00:00
|
|
|
"Programming Language :: Python :: 3.9",
|
2022-01-17 01:37:54 +00:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2022-11-19 20:59:31 +00:00
|
|
|
"Programming Language :: Python :: 3.11",
|
2018-10-07 03:13:06 +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
|
|
|
)
|