-
-
Notifications
You must be signed in to change notification settings - Fork 760
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into bug/fix-shutdown-event-on-windows-in-hot-r…
…eloader
- Loading branch information
Showing
27 changed files
with
336 additions
and
415 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ uvicorn.egg-info/ | |
venv/ | ||
htmlcov/ | ||
site/ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "uvicorn" | ||
dynamic = ["version"] | ||
description = "The lightning-fast ASGI server." | ||
readme = "README.md" | ||
license = "BSD-3-Clause" | ||
requires-python = ">=3.7" | ||
authors = [ | ||
{ name = "Tom Christie", email = "tom@tomchristie.com" }, | ||
] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Topic :: Internet :: WWW/HTTP", | ||
] | ||
dependencies = [ | ||
"click>=7.0", | ||
"h11>=0.8", | ||
"typing-extensions;python_version < '3.8'", | ||
] | ||
|
||
[project.optional-dependencies] | ||
standard = [ | ||
"colorama>=0.4;sys_platform == 'win32'", | ||
"httptools>=0.5.0", | ||
"python-dotenv>=0.13", | ||
"PyYAML>=5.1", | ||
"uvloop>=0.14.0,!=0.15.0,!=0.15.1; sys_platform != 'win32' and (sys_platform != 'cygwin' and platform_python_implementation != 'PyPy')", | ||
"watchfiles>=0.13", | ||
"websockets>=10.0", | ||
] | ||
|
||
[project.scripts] | ||
uvicorn = "uvicorn.main:main" | ||
|
||
[project.urls] | ||
Changelog = "https://github.com/encode/uvicorn/blob/master/CHANGELOG.md" | ||
Funding = "https://github.com/sponsors/encode" | ||
Homepage = "https://www.uvicorn.org/" | ||
Source = "https://github.com/encode/uvicorn" | ||
|
||
[tool.hatch.version] | ||
path = "uvicorn/__init__.py" | ||
|
||
[tool.hatch.build.targets.sdist] | ||
include = [ | ||
"/uvicorn", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,103 +1,30 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
import os | ||
import re | ||
import sys | ||
|
||
from setuptools import setup | ||
|
||
|
||
def get_version(package): | ||
""" | ||
Return package version as listed in `__version__` in `init.py`. | ||
""" | ||
path = os.path.join(package, "__init__.py") | ||
init_py = open(path, "r", encoding="utf8").read() | ||
return re.search("__version__ = ['\"]([^'\"]+)['\"]", init_py).group(1) | ||
|
||
|
||
def get_long_description(): | ||
""" | ||
Return the README. | ||
""" | ||
return open("README.md", "r", encoding="utf8").read() | ||
|
||
|
||
def get_packages(package): | ||
sys.stderr.write( | ||
""" | ||
Return root package and all sub-packages. | ||
""" | ||
return [ | ||
dirpath | ||
for dirpath, dirnames, filenames in os.walk(package) | ||
if os.path.exists(os.path.join(dirpath, "__init__.py")) | ||
] | ||
|
||
|
||
env_marker_cpython = ( | ||
"sys_platform != 'win32'" | ||
" and (sys_platform != 'cygwin'" | ||
" and platform_python_implementation != 'PyPy')" | ||
=============================== | ||
Unsupported installation method | ||
=============================== | ||
Uvicorn no longer supports installation with `python setup.py install`. | ||
Please use `python -m pip install .` instead. | ||
""" | ||
) | ||
sys.exit(1) | ||
|
||
env_marker_win = "sys_platform == 'win32'" | ||
env_marker_below_38 = "python_version < '3.8'" | ||
|
||
minimal_requirements = [ | ||
"click>=7.0", | ||
"h11>=0.8", | ||
"typing-extensions;" + env_marker_below_38, | ||
] | ||
|
||
|
||
extra_requirements = [ | ||
"websockets>=10.0", | ||
"httptools>=0.4.0", | ||
"uvloop>=0.14.0,!=0.15.0,!=0.15.1; " + env_marker_cpython, | ||
"colorama>=0.4;" + env_marker_win, | ||
"watchfiles>=0.13", | ||
"python-dotenv>=0.13", | ||
"PyYAML>=5.1", | ||
] | ||
|
||
# The below code will never execute, however GitHub is particularly | ||
# picky about where it finds Python packaging metadata. | ||
# See: https://github.com/github/feedback/discussions/6456 | ||
# | ||
# To be removed once GitHub catches up. | ||
|
||
setup( | ||
name="uvicorn", | ||
version=get_version("uvicorn"), | ||
url="https://www.uvicorn.org/", | ||
license="BSD", | ||
description="The lightning-fast ASGI server.", | ||
long_description=get_long_description(), | ||
long_description_content_type="text/markdown", | ||
author="Tom Christie", | ||
author_email="tom@tomchristie.com", | ||
packages=get_packages("uvicorn"), | ||
python_requires=">=3.7", | ||
install_requires=minimal_requirements, | ||
extras_require={"standard": extra_requirements}, | ||
include_package_data=True, | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: OS Independent", | ||
"Topic :: Internet :: WWW/HTTP", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
install_requires=[ | ||
"click>=7.0", | ||
"h11>=0.8", | ||
"typing-extensions;python_version < '3.8'", | ||
], | ||
entry_points=""" | ||
[console_scripts] | ||
uvicorn=uvicorn.main:main | ||
""", | ||
project_urls={ | ||
"Funding": "https://github.com/sponsors/encode", | ||
"Source": "https://github.com/encode/uvicorn", | ||
"Changelog": "https://github.com/encode/uvicorn/blob/master/CHANGELOG.md", | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.