Metadata-Version: 2.1
Name: speed-stack
Version: 0.1.1
Summary: This simplifies easy enhancements to python.
Home-page: UNKNOWN
License: MIT
Keywords: ujson,uvloop,fast,speed,drop-in
Author: austinv11
Author-email: austinv11@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Provides-Extra: dill
Provides-Extra: multiprocess
Provides-Extra: rapidjson
Provides-Extra: recommended
Provides-Extra: ujson
Provides-Extra: uvloop
Requires-Dist: dill (>=0.2.8,<0.3.0); extra == "dill" or extra == "multiprocess" or extra == "recommended"
Requires-Dist: multiprocess (>=0.70.6,<0.71.0); extra == "multiprocess" or extra == "recommended"
Requires-Dist: python-rapidjson (>=0.6.3,<0.7.0); extra == "rapidjson"
Requires-Dist: ujson (>=1.35,<2.0); extra == "ujson" or extra == "recommended"
Requires-Dist: uvloop (>=0.11.2,<0.12.0); (sys_platform == "!windows") and (extra == "uvloop" or extra == "recommended")
Description-Content-Type: text/markdown

# Speed-Stack
Easy enhancements to python by replacing system modules with various (optional)
third party packages.

Current available configurations:
* uvloop: Injects uvloop as the current asyncio EventLoop Policy
* ujson: Injects ujson as the json module implementation
* rapidjson: Injects python-rapidjson as the json module implementation
* dill: Injects dill as the json module implementation
* multiprocess: (Inherits the dill configuration) Injects multiprocess as the multiprocessing module implementation
* recommended: Injects uvloop, ujson, dill and multiprocess.
