2016-10-02 03:48:50 +01:00
|
|
|
"""
|
|
|
|
Sanic
|
|
|
|
"""
|
2016-10-25 09:49:43 +01:00
|
|
|
import codecs
|
|
|
|
import os
|
|
|
|
import re
|
2018-12-18 16:42:32 +00:00
|
|
|
import sys
|
2017-03-28 10:50:09 +01:00
|
|
|
from distutils.util import strtobool
|
2016-10-02 03:48:50 +01:00
|
|
|
|
2017-03-28 10:50:09 +01:00
|
|
|
from setuptools import setup
|
2018-12-18 16:42:32 +00:00
|
|
|
from setuptools.command.test import test as TestCommand
|
|
|
|
|
|
|
|
|
|
|
|
class PyTest(TestCommand):
|
2018-12-21 17:44:01 +00:00
|
|
|
"""
|
|
|
|
Provide a Test runner to be used from setup.py to run unit tests
|
|
|
|
"""
|
|
|
|
|
|
|
|
user_options = [("pytest-args=", "a", "Arguments to pass to pytest")]
|
2018-12-18 16:42:32 +00:00
|
|
|
|
|
|
|
def initialize_options(self):
|
|
|
|
TestCommand.initialize_options(self)
|
2018-12-21 17:44:01 +00:00
|
|
|
self.pytest_args = ""
|
2018-12-18 16:42:32 +00:00
|
|
|
|
|
|
|
def run_tests(self):
|
|
|
|
import shlex
|
|
|
|
import pytest
|
2018-12-21 17:44:01 +00:00
|
|
|
|
2018-12-18 16:42:32 +00:00
|
|
|
errno = pytest.main(shlex.split(self.pytest_args))
|
|
|
|
sys.exit(errno)
|
2016-10-25 09:49:43 +01:00
|
|
|
|
2017-05-02 10:04:58 +01:00
|
|
|
|
2018-12-21 17:44:01 +00:00
|
|
|
def open_local(paths, mode="r", encoding="utf8"):
|
|
|
|
path = os.path.join(os.path.abspath(os.path.dirname(__file__)), *paths)
|
2017-05-02 10:04:58 +01:00
|
|
|
|
|
|
|
return codecs.open(path, mode, encoding)
|
|
|
|
|
|
|
|
|
2019-07-13 08:22:41 +01:00
|
|
|
with open_local(["sanic", "__version__.py"], encoding="latin1") as fp:
|
2016-10-25 09:49:43 +01:00
|
|
|
try:
|
2020-06-05 15:14:18 +01:00
|
|
|
version = re.findall(r"^__version__ = \"([^']+)\"\r?$", fp.read(), re.M)[0]
|
2016-10-25 09:49:43 +01:00
|
|
|
except IndexError:
|
2018-12-21 17:44:01 +00:00
|
|
|
raise RuntimeError("Unable to determine version.")
|
2016-10-25 09:49:43 +01:00
|
|
|
|
2018-12-21 17:44:01 +00:00
|
|
|
with open_local(["README.rst"]) as rm:
|
2017-05-02 10:04:58 +01:00
|
|
|
long_description = rm.read()
|
|
|
|
|
2017-03-28 10:50:09 +01:00
|
|
|
setup_kwargs = {
|
2018-12-21 17:44:01 +00:00
|
|
|
"name": "sanic",
|
|
|
|
"version": version,
|
2019-04-23 22:44:42 +01:00
|
|
|
"url": "http://github.com/huge-success/sanic/",
|
2018-12-21 17:44:01 +00:00
|
|
|
"license": "MIT",
|
2019-04-23 22:44:42 +01:00
|
|
|
"author": "Sanic Community",
|
|
|
|
"author_email": "admhpkns@gmail.com",
|
2018-12-21 17:44:01 +00:00
|
|
|
"description": (
|
2019-04-23 22:44:42 +01:00
|
|
|
"A web server and web framework that's written to go fast. Build fast. Run fast."
|
2018-12-21 17:44:01 +00:00
|
|
|
),
|
|
|
|
"long_description": long_description,
|
|
|
|
"packages": ["sanic"],
|
2020-11-19 09:18:25 +00:00
|
|
|
"package_data": {"sanic": ["py.typed"]},
|
2018-12-21 17:44:01 +00:00
|
|
|
"platforms": "any",
|
2019-10-15 05:17:05 +01:00
|
|
|
"python_requires": ">=3.6",
|
2018-12-21 17:44:01 +00:00
|
|
|
"classifiers": [
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Environment :: Web Environment",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
2020-02-05 19:17:55 +00:00
|
|
|
"Programming Language :: Python :: 3.8",
|
2020-10-25 13:21:48 +00:00
|
|
|
"Programming Language :: Python :: 3.9",
|
2017-03-12 05:46:31 +00:00
|
|
|
],
|
2020-06-05 15:14:18 +01:00
|
|
|
"entry_points": {"console_scripts": ["sanic = sanic.__main__:main"]},
|
2017-03-12 03:09:01 +00:00
|
|
|
}
|
2017-02-27 16:14:47 +00:00
|
|
|
|
2020-06-05 15:14:18 +01:00
|
|
|
env_dependency = '; sys_platform != "win32" ' 'and implementation_name == "cpython"'
|
2018-12-21 17:44:01 +00:00
|
|
|
ujson = "ujson>=1.35" + env_dependency
|
|
|
|
uvloop = "uvloop>=0.5.3" + env_dependency
|
2017-03-28 10:50:09 +01:00
|
|
|
|
|
|
|
requirements = [
|
2018-12-21 17:44:01 +00:00
|
|
|
"httptools>=0.0.10",
|
2017-03-28 10:50:09 +01:00
|
|
|
uvloop,
|
|
|
|
ujson,
|
2020-11-06 06:32:04 +00:00
|
|
|
"aiofiles>=0.6.0",
|
2020-06-28 06:43:12 +01:00
|
|
|
"websockets>=8.1,<9.0",
|
2020-11-16 20:08:27 +00:00
|
|
|
"multidict>=5.0,<6.0",
|
2020-09-27 00:58:36 +01:00
|
|
|
"httpx==0.15.4",
|
2017-03-28 10:50:09 +01:00
|
|
|
]
|
2018-12-21 17:44:01 +00:00
|
|
|
|
2018-12-18 16:42:32 +00:00
|
|
|
tests_require = [
|
2019-10-07 19:41:44 +01:00
|
|
|
"pytest==5.2.1",
|
2020-11-16 20:08:27 +00:00
|
|
|
"multidict>=5.0,<6.0",
|
2018-12-21 17:44:01 +00:00
|
|
|
"gunicorn",
|
|
|
|
"pytest-cov",
|
2019-05-16 16:56:25 +01:00
|
|
|
"httpcore==0.3.0",
|
2018-12-21 17:44:01 +00:00
|
|
|
"beautifulsoup4",
|
2018-12-18 16:42:32 +00:00
|
|
|
uvloop,
|
|
|
|
ujson,
|
2018-12-21 17:44:01 +00:00
|
|
|
"pytest-sanic",
|
|
|
|
"pytest-sugar",
|
2019-04-19 15:31:23 +01:00
|
|
|
"pytest-benchmark",
|
2020-10-25 19:31:34 +00:00
|
|
|
"pytest-dependency",
|
2018-12-18 16:42:32 +00:00
|
|
|
]
|
|
|
|
|
2019-07-13 08:22:41 +01:00
|
|
|
docs_require = [
|
|
|
|
"sphinx>=2.1.2",
|
|
|
|
"sphinx_rtd_theme",
|
|
|
|
"recommonmark>=0.5.0",
|
|
|
|
"docutils",
|
|
|
|
"pygments",
|
|
|
|
]
|
|
|
|
|
|
|
|
dev_require = tests_require + [
|
|
|
|
"aiofiles",
|
|
|
|
"tox",
|
|
|
|
"black",
|
|
|
|
"flake8",
|
|
|
|
"bandit",
|
|
|
|
"towncrier",
|
|
|
|
]
|
|
|
|
|
|
|
|
all_require = dev_require + docs_require
|
|
|
|
|
2017-03-28 10:50:09 +01:00
|
|
|
if strtobool(os.environ.get("SANIC_NO_UJSON", "no")):
|
|
|
|
print("Installing without uJSON")
|
|
|
|
requirements.remove(ujson)
|
2018-12-18 16:42:32 +00:00
|
|
|
tests_require.remove(ujson)
|
2017-03-28 10:50:09 +01:00
|
|
|
|
2017-12-29 18:04:22 +00:00
|
|
|
# 'nt' means windows OS
|
2018-02-06 14:57:16 +00:00
|
|
|
if strtobool(os.environ.get("SANIC_NO_UVLOOP", "no")):
|
2017-03-28 10:50:09 +01:00
|
|
|
print("Installing without uvLoop")
|
|
|
|
requirements.remove(uvloop)
|
2018-12-18 16:42:32 +00:00
|
|
|
tests_require.remove(uvloop)
|
2017-03-28 10:50:09 +01:00
|
|
|
|
2018-12-21 17:44:01 +00:00
|
|
|
extras_require = {
|
|
|
|
"test": tests_require,
|
2019-07-13 08:22:41 +01:00
|
|
|
"dev": dev_require,
|
|
|
|
"docs": docs_require,
|
|
|
|
"all": all_require,
|
2018-12-18 16:42:32 +00:00
|
|
|
}
|
2018-12-21 17:44:01 +00:00
|
|
|
|
|
|
|
setup_kwargs["install_requires"] = requirements
|
|
|
|
setup_kwargs["tests_require"] = tests_require
|
|
|
|
setup_kwargs["extras_require"] = extras_require
|
|
|
|
setup_kwargs["cmdclass"] = {"test": PyTest}
|
2018-02-06 14:57:16 +00:00
|
|
|
setup(**setup_kwargs)
|