2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "alabaster"
2020-12-22 02:18:46 +00:00
version = "0.7.12"
description = "A configurable sidebar-enabled Sphinx theme"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
2020-09-18 02:22:48 +00:00
[ [ package ] ]
name = "aniso8601"
2021-05-02 22:12:04 +00:00
version = "9.0.1"
2020-09-18 02:22:48 +00:00
description = "A library for parsing ISO 8601 strings."
category = "main"
optional = false
python-versions = "*"
2021-05-02 22:12:04 +00:00
[ package . extras ]
dev = [ "black" , "coverage" , "isort" , "pre-commit" , "pyenchant" , "pylint" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "appdirs"
2020-12-22 02:18:46 +00:00
version = "1.4.4"
description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
[ [ package ] ]
name = "appnope"
2020-12-22 02:18:46 +00:00
version = "0.1.2"
description = "Disable App Nap on macOS >= 10.9"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
[ [ package ] ]
name = "aspy.refactor-imports"
2021-05-02 22:12:04 +00:00
version = "2.2.0"
2020-12-22 02:18:46 +00:00
description = "Utilities for refactoring imports in python-like syntax."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.6.1"
[ package . dependencies ]
cached-property = "*"
[ [ package ] ]
name = "astroid"
2021-05-02 22:12:04 +00:00
version = "2.5.6"
2020-12-22 02:18:46 +00:00
description = "An abstract syntax tree for Python with inference support."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-05-02 22:12:04 +00:00
python-versions = "~=3.6"
2020-09-16 07:41:53 +00:00
[ package . dependencies ]
2021-05-02 22:12:04 +00:00
lazy-object-proxy = ">=1.4.0"
2020-12-22 02:18:46 +00:00
typed-ast = { version = ">=1.4.0,<1.5" , markers = "implementation_name == \"cpython\" and python_version < \"3.8\"" }
2021-05-02 22:12:04 +00:00
wrapt = ">=1.11,<1.13"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "atomicwrites"
2020-12-22 02:18:46 +00:00
version = "1.4.0"
description = "Atomic file writes."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ [ package ] ]
name = "attrs"
2020-12-22 02:18:46 +00:00
version = "20.3.0"
description = "Classes Without Boilerplate"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ package . extras ]
2020-12-22 02:18:46 +00:00
dev = [ "coverage[toml] (>=5.0.2)" , "hypothesis" , "pympler" , "pytest (>=4.3.0)" , "six" , "zope.interface" , "furo" , "sphinx" , "pre-commit" ]
docs = [ "furo" , "sphinx" , "zope.interface" ]
tests = [ "coverage[toml] (>=5.0.2)" , "hypothesis" , "pympler" , "pytest (>=4.3.0)" , "six" , "zope.interface" ]
tests_no_zope = [ "coverage[toml] (>=5.0.2)" , "hypothesis" , "pympler" , "pytest (>=4.3.0)" , "six" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "babel"
2021-05-02 22:12:04 +00:00
version = "2.9.1"
2020-12-22 02:18:46 +00:00
description = "Internationalization utilities"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ package . dependencies ]
pytz = ">=2015.7"
[ [ package ] ]
name = "backcall"
2020-12-22 02:18:46 +00:00
version = "0.2.0"
description = "Specifications for callback functions passed in to an API"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
[ [ package ] ]
name = "bandit"
2020-12-22 02:18:46 +00:00
version = "1.7.0"
description = "Security oriented static analyser for python code."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2020-12-22 02:18:46 +00:00
python-versions = ">=3.5"
2020-09-16 07:41:53 +00:00
[ package . dependencies ]
2020-12-22 02:18:46 +00:00
colorama = { version = ">=0.3.9" , markers = "platform_system == \"Windows\"" }
2020-09-16 07:41:53 +00:00
GitPython = ">=1.0.1"
2020-12-22 02:18:46 +00:00
PyYAML = ">=5.3.1"
2020-09-16 07:41:53 +00:00
six = ">=1.10.0"
stevedore = ">=1.20.0"
[ [ package ] ]
name = "black"
2021-05-05 17:48:02 +00:00
version = "21.5b0"
2020-12-22 02:18:46 +00:00
description = "The uncompromising code formatter."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-05-02 22:12:04 +00:00
python-versions = ">=3.6.2"
2020-09-16 07:41:53 +00:00
[ package . dependencies ]
appdirs = "*"
click = ">=7.1.2"
2020-12-22 02:18:46 +00:00
mypy-extensions = ">=0.4.3"
2021-05-02 22:12:04 +00:00
pathspec = ">=0.8.1,<1"
2020-09-16 07:41:53 +00:00
regex = ">=2020.1.8"
toml = ">=0.10.1"
2021-05-02 22:12:04 +00:00
typed-ast = { version = ">=1.4.2" , markers = "python_version < \"3.8\"" }
typing-extensions = { version = ">=3.7.4" , markers = "python_version < \"3.8\"" }
2020-09-16 07:41:53 +00:00
[ package . extras ]
colorama = [ "colorama (>=0.4.3)" ]
d = [ "aiohttp (>=3.3.2)" , "aiohttp-cors" ]
2021-05-02 22:12:04 +00:00
python2 = [ "typed-ast (>=1.4.2)" ]
2020-12-22 02:18:46 +00:00
2020-09-16 07:41:53 +00:00
[ [ package ] ]
2020-12-22 02:18:46 +00:00
name = "blacken-docs"
2021-05-02 22:12:04 +00:00
version = "1.10.0"
2020-12-22 02:18:46 +00:00
description = "Run `black` on python code blocks in documentation files"
2020-09-16 07:41:53 +00:00
category = "dev"
2020-12-22 02:18:46 +00:00
optional = false
python-versions = ">=3.6.1"
[ package . dependencies ]
black = ">=19.3b0"
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "cachecontrol"
version = "0.12.6"
description = "httplib2 caching for requests"
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ package . dependencies ]
lockfile = { version = ">=0.9" , optional = true , markers = "extra == \"filecache\"" }
msgpack = ">=0.5.2"
requests = "*"
[ package . extras ]
filecache = [ "lockfile (>=0.9)" ]
redis = [ "redis (>=2.10.5)" ]
2020-12-22 02:18:46 +00:00
[ [ package ] ]
2020-09-16 07:41:53 +00:00
name = "cached-property"
2020-12-22 02:18:46 +00:00
version = "1.5.2"
description = "A decorator for caching properties in classes."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "cachy"
version = "0.3.0"
description = "Cachy provides a simple yet effective caching library."
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ package . extras ]
redis = [ "redis (>=3.3.6,<4.0.0)" ]
memcached = [ "python-memcached (>=1.59,<2.0)" ]
msgpack = [ "msgpack-python (>=0.5,<0.6)" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "certifi"
2020-12-22 02:18:46 +00:00
version = "2020.12.5"
description = "Python package for providing Mozilla's CA Bundle."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "cffi"
2021-05-02 22:12:04 +00:00
version = "1.14.5"
2020-12-22 02:52:07 +00:00
description = "Foreign Function Interface for Python calling C code."
category = "dev"
optional = false
python-versions = "*"
[ package . dependencies ]
pycparser = "*"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "cfgv"
2020-12-22 02:18:46 +00:00
version = "3.2.0"
description = "Validate configuration and produce human readable error messages."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.6.1"
[ [ package ] ]
name = "chardet"
2020-12-22 02:18:46 +00:00
version = "4.0.0"
description = "Universal encoding detector for Python 2 and 3"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2020-12-22 02:18:46 +00:00
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
2020-09-16 07:41:53 +00:00
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "cleo"
version = "0.8.1"
description = "Cleo allows you to create beautiful and testable command-line interfaces."
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ package . dependencies ]
clikit = ">=0.6.0,<0.7.0"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "click"
2020-12-22 02:18:46 +00:00
version = "7.1.2"
description = "Composable command line interface toolkit"
2020-09-18 02:22:48 +00:00
category = "main"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "clikit"
version = "0.6.2"
description = "CliKit is a group of utilities to build beautiful and testable command line interfaces."
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ package . dependencies ]
crashtest = { version = ">=0.3.0,<0.4.0" , markers = "python_version >= \"3.6\" and python_version < \"4.0\"" }
pastel = ">=0.2.0,<0.3.0"
pylev = ">=1.3,<2.0"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "colorama"
2020-12-22 02:18:46 +00:00
version = "0.4.4"
description = "Cross-platform colored terminal text."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[ [ package ] ]
name = "coverage"
2021-05-02 22:12:04 +00:00
version = "5.5"
2020-12-22 02:18:46 +00:00
description = "Code coverage measurement for Python"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
[ package . extras ]
toml = [ "toml" ]
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "crashtest"
version = "0.3.1"
description = "Manage Python errors with ease"
category = "dev"
optional = false
python-versions = ">=3.6,<4.0"
[ [ package ] ]
name = "cryptography"
2021-05-02 22:12:04 +00:00
version = "3.4.7"
2020-12-22 02:52:07 +00:00
description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
category = "dev"
optional = false
2021-05-02 22:12:04 +00:00
python-versions = ">=3.6"
2020-12-22 02:52:07 +00:00
[ package . dependencies ]
cffi = ">=1.12"
[ package . extras ]
docs = [ "sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)" , "sphinx-rtd-theme" ]
docstest = [ "doc8" , "pyenchant (>=1.6.11)" , "twine (>=1.12.0)" , "sphinxcontrib-spelling (>=4.0.1)" ]
pep8test = [ "black" , "flake8" , "flake8-import-order" , "pep8-naming" ]
2021-05-02 22:12:04 +00:00
sdist = [ "setuptools-rust (>=0.11.4)" ]
2020-12-22 02:52:07 +00:00
ssh = [ "bcrypt (>=3.1.5)" ]
2021-05-02 22:12:04 +00:00
test = [ "pytest (>=6.0)" , "pytest-cov" , "pytest-subtests" , "pytest-xdist" , "pretend" , "iso8601" , "pytz" , "hypothesis (>=1.11.4,!=3.79.2)" ]
2020-12-22 02:52:07 +00:00
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "decorator"
2021-05-02 22:12:04 +00:00
version = "5.0.7"
2020-12-22 02:18:46 +00:00
description = "Decorators for Humans"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-05-02 22:12:04 +00:00
python-versions = ">=3.5"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "distlib"
2020-12-22 02:18:46 +00:00
version = "0.3.1"
description = "Distribution utilities"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
[ [ package ] ]
name = "docutils"
2020-12-22 02:18:46 +00:00
version = "0.16"
description = "Docutils -- Python Documentation Utilities"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[ [ package ] ]
name = "dparse"
2020-12-22 02:18:46 +00:00
version = "0.5.1"
description = "A parser for Python dependency files"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.5"
[ package . dependencies ]
packaging = "*"
pyyaml = "*"
toml = "*"
[ package . extras ]
pipenv = [ "pipenv" ]
[ [ package ] ]
name = "filelock"
2020-12-22 02:18:46 +00:00
version = "3.0.12"
description = "A platform independent file lock."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
2020-09-18 02:22:48 +00:00
[ [ package ] ]
name = "flask"
version = "1.1.2"
description = "A simple framework for building complex web applications."
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[ package . dependencies ]
click = ">=5.1"
itsdangerous = ">=0.24"
Jinja2 = ">=2.10.1"
Werkzeug = ">=0.15"
[ package . extras ]
dev = [ "pytest" , "coverage" , "tox" , "sphinx" , "pallets-sphinx-themes" , "sphinxcontrib-log-cabinet" , "sphinx-issues" ]
docs = [ "sphinx" , "pallets-sphinx-themes" , "sphinxcontrib-log-cabinet" , "sphinx-issues" ]
dotenv = [ "python-dotenv" ]
[ [ package ] ]
name = "flask-restful"
version = "0.3.8"
description = "Simple framework for creating REST APIs"
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
aniso8601 = ">=0.82"
Flask = ">=0.8"
pytz = "*"
six = ">=1.3.0"
[ package . extras ]
docs = [ "sphinx" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "gitdb"
2021-05-02 22:12:04 +00:00
version = "4.0.7"
2020-12-22 02:18:46 +00:00
description = "Git Object Database"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.4"
[ package . dependencies ]
2021-05-02 22:12:04 +00:00
smmap = ">=3.0.1,<5"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "gitpython"
2021-05-02 22:12:04 +00:00
version = "3.1.15"
2020-12-22 02:18:46 +00:00
description = "Python Git Library"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-05-02 22:12:04 +00:00
python-versions = ">=3.5"
2020-09-16 07:41:53 +00:00
[ package . dependencies ]
gitdb = ">=4.0.1,<5"
2021-05-02 22:12:04 +00:00
typing-extensions = ">=3.7.4.0"
2020-09-16 07:41:53 +00:00
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "html5lib"
version = "1.1"
description = "HTML parser based on the WHATWG HTML specification"
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[ package . dependencies ]
six = ">=1.9"
webencodings = "*"
[ package . extras ]
all = [ "genshi" , "chardet (>=2.2)" , "lxml" ]
chardet = [ "chardet (>=2.2)" ]
genshi = [ "genshi" ]
lxml = [ "lxml" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "identify"
2021-05-02 22:12:04 +00:00
version = "2.2.4"
2020-12-22 02:18:46 +00:00
description = "File identification library for Python"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-05-02 22:12:04 +00:00
python-versions = ">=3.6.1"
2020-09-16 07:41:53 +00:00
[ package . extras ]
2021-05-02 22:12:04 +00:00
license = [ "editdistance-s" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "idna"
2020-12-22 02:18:46 +00:00
version = "2.10"
description = "Internationalized Domain Names in Applications (IDNA)"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ [ package ] ]
name = "imagesize"
2020-12-22 02:18:46 +00:00
version = "1.2.0"
description = "Getting image size from png/jpeg/jpeg2000/gif file"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ [ package ] ]
name = "importlib-metadata"
2020-12-22 02:52:07 +00:00
version = "1.7.0"
2020-12-22 02:18:46 +00:00
description = "Read metadata from Python packages"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
[ package . dependencies ]
zipp = ">=0.5"
[ package . extras ]
docs = [ "sphinx" , "rst.linker" ]
2020-12-22 02:52:07 +00:00
testing = [ "packaging" , "pep517" , "importlib-resources (>=1.3)" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "ipython"
2021-05-05 17:48:02 +00:00
version = "7.23.1"
2020-12-22 02:18:46 +00:00
description = "IPython: Productive Interactive Computing"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.7"
[ package . dependencies ]
2020-12-22 02:18:46 +00:00
appnope = { version = "*" , markers = "sys_platform == \"darwin\"" }
2020-09-16 07:41:53 +00:00
backcall = "*"
2020-12-22 02:18:46 +00:00
colorama = { version = "*" , markers = "sys_platform == \"win32\"" }
2020-09-16 07:41:53 +00:00
decorator = "*"
2021-05-02 22:12:04 +00:00
jedi = ">=0.16"
matplotlib-inline = "*"
2020-12-22 02:18:46 +00:00
pexpect = { version = ">4.3" , markers = "sys_platform != \"win32\"" }
2020-09-16 07:41:53 +00:00
pickleshare = "*"
prompt-toolkit = ">=2.0.0,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.1.0"
pygments = "*"
traitlets = ">=4.2"
[ package . extras ]
2021-05-02 22:12:04 +00:00
all = [ "Sphinx (>=1.3)" , "ipykernel" , "ipyparallel" , "ipywidgets" , "nbconvert" , "nbformat" , "nose (>=0.10.1)" , "notebook" , "numpy (>=1.16)" , "pygments" , "qtconsole" , "requests" , "testpath" ]
2020-09-16 07:41:53 +00:00
doc = [ "Sphinx (>=1.3)" ]
kernel = [ "ipykernel" ]
nbconvert = [ "nbconvert" ]
nbformat = [ "nbformat" ]
notebook = [ "notebook" , "ipywidgets" ]
parallel = [ "ipyparallel" ]
qtconsole = [ "qtconsole" ]
2021-05-02 22:12:04 +00:00
test = [ "nose (>=0.10.1)" , "requests" , "testpath" , "pygments" , "nbformat" , "ipykernel" , "numpy (>=1.16)" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "ipython-genutils"
2020-12-22 02:18:46 +00:00
version = "0.2.0"
description = "Vestigial utilities from IPython"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
[ [ package ] ]
name = "isort"
2021-05-02 22:12:04 +00:00
version = "5.8.0"
2020-12-22 02:18:46 +00:00
description = "A Python utility / library to sort Python imports."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.6,<4.0"
[ package . extras ]
pipfile_deprecated_finder = [ "pipreqs" , "requirementslib" ]
requirements_deprecated_finder = [ "pipreqs" , "pip-api" ]
2020-12-22 02:18:46 +00:00
colors = [ "colorama (>=0.4.3,<0.5.0)" ]
2020-09-16 07:41:53 +00:00
2020-09-18 02:22:48 +00:00
[ [ package ] ]
name = "itsdangerous"
version = "1.1.0"
description = "Various helpers to pass data to untrusted environments and back."
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "jedi"
2021-05-02 22:12:04 +00:00
version = "0.18.0"
2020-12-22 02:18:46 +00:00
description = "An autocompletion tool for Python that can be used for text editors."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-05-02 22:12:04 +00:00
python-versions = ">=3.6"
2020-09-16 07:41:53 +00:00
[ package . dependencies ]
2021-05-02 22:12:04 +00:00
parso = ">=0.8.0,<0.9.0"
2020-09-16 07:41:53 +00:00
[ package . extras ]
2021-05-02 22:12:04 +00:00
qa = [ "flake8 (==3.8.3)" , "mypy (==0.782)" ]
testing = [ "Django (<3.1)" , "colorama" , "docopt" , "pytest (<6.0.0)" ]
2020-09-16 07:41:53 +00:00
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "jeepney"
version = "0.6.0"
description = "Low-level, pure Python DBus protocol wrapper."
category = "dev"
optional = false
python-versions = ">=3.6"
[ package . extras ]
test = [ "pytest" , "pytest-trio" , "pytest-asyncio" , "testpath" , "trio" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "jinja2"
2021-05-02 22:12:04 +00:00
version = "2.11.3"
2020-12-22 02:18:46 +00:00
description = "A very fast and expressive template engine."
2020-09-18 02:22:48 +00:00
category = "main"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[ package . dependencies ]
MarkupSafe = ">=0.23"
[ package . extras ]
i18n = [ "Babel (>=0.8)" ]
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "keyring"
2021-05-02 22:12:04 +00:00
version = "21.8.0"
2020-12-22 02:52:07 +00:00
description = "Store and access your passwords safely."
category = "dev"
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
importlib-metadata = { version = ">=1" , markers = "python_version < \"3.8\"" }
jeepney = { version = ">=0.4.2" , markers = "sys_platform == \"linux\"" }
pywin32-ctypes = { version = "<0.1.0 || >0.1.0,<0.1.1 || >0.1.1" , markers = "sys_platform == \"win32\"" }
SecretStorage = { version = ">=3.2" , markers = "sys_platform == \"linux\"" }
[ package . extras ]
2021-05-02 22:12:04 +00:00
docs = [ "sphinx" , "jaraco.packaging (>=8.2)" , "rst.linker (>=1.9)" ]
2020-12-22 02:52:07 +00:00
testing = [ "pytest (>=3.5,!=3.7.3)" , "pytest-checkdocs (>=1.2.3)" , "pytest-flake8" , "pytest-cov" , "jaraco.test (>=3.2.0)" , "pytest-black (>=0.3.7)" , "pytest-mypy" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "lazy-object-proxy"
2021-05-02 22:12:04 +00:00
version = "1.6.0"
2020-12-22 02:18:46 +00:00
description = "A fast and thorough lazy object proxy."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-05-02 22:12:04 +00:00
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
2020-09-16 07:41:53 +00:00
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "lockfile"
version = "0.12.2"
description = "Platform-independent file locking module"
category = "dev"
optional = false
python-versions = "*"
2021-05-02 22:12:04 +00:00
[ [ package ] ]
name = "markdown-it-py"
version = "0.6.2"
description = "Python port of markdown-it. Markdown parsing, done right!"
category = "dev"
optional = false
python-versions = "~=3.6"
[ package . dependencies ]
attrs = ">=19,<21"
mdit-py-plugins = ">=0.2.1,<0.3.0"
[ package . extras ]
code_style = [ "pre-commit (==2.6)" ]
compare = [ "commonmark (>=0.9.1,<0.10.0)" , "markdown (>=3.2.2,<3.3.0)" , "mistune (>=0.8.4,<0.9.0)" , "mistletoe-ebp (>=0.10.0,<0.11.0)" , "panflute (>=1.12,<2.0)" ]
linkify = [ "linkify-it-py (>=1.0,<2.0)" ]
rtd = [ "myst-nb (>=0.11.1,<0.12.0)" , "sphinx-book-theme" , "sphinx-panels (>=0.4.0,<0.5.0)" , "sphinx-copybutton" , "sphinx (>=2,<4)" , "pyyaml" ]
testing = [ "coverage" , "pytest (>=3.6,<4)" , "pytest-cov" , "pytest-regressions" , "pytest-benchmark (>=3.2,<4.0)" , "psutil" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "markupsafe"
2020-12-22 02:18:46 +00:00
version = "1.1.1"
description = "Safely add untrusted strings to HTML/XML markup."
2020-09-18 02:22:48 +00:00
category = "main"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*"
2021-05-02 22:12:04 +00:00
[ [ package ] ]
name = "matplotlib-inline"
version = "0.1.2"
description = "Inline Matplotlib backend for Jupyter"
category = "dev"
optional = false
python-versions = ">=3.5"
[ package . dependencies ]
traitlets = "*"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "mccabe"
2020-12-22 02:18:46 +00:00
version = "0.6.1"
description = "McCabe checker, plugin for flake8"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
2021-05-02 22:12:04 +00:00
[ [ package ] ]
name = "mdformat"
version = "0.6.4"
description = "CommonMark compliant Markdown formatter"
category = "dev"
optional = false
python-versions = ">=3.6.1,<4.0.0"
[ package . dependencies ]
importlib-metadata = { version = ">=0.12" , markers = "python_version < \"3.8\"" }
markdown-it-py = ">=0.5.5,<0.7.0"
typing-extensions = { version = ">=3.7.4" , markers = "python_version < \"3.8\"" }
[ [ package ] ]
name = "mdformat-gfm"
version = "0.2.0"
description = "Mdformat plugin for GitHub Flavored Markdown compatibility"
category = "dev"
optional = false
python-versions = ">=3.6.1,<4.0.0"
[ package . dependencies ]
markdown-it-py = ">=0.5.8"
mdformat = ">=0.6.0,<0.7.0"
mdformat-tables = ">=0.3.0"
mdit-py-plugins = ">=0.2.0"
[ [ package ] ]
name = "mdformat-tables"
version = "0.3.0"
description = "An mdformat plugin for rendering tables."
category = "dev"
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
mdformat = ">=0.6.0,<0.7.0"
[ package . extras ]
test = [ "pytest (>=6.0,<7.0)" , "coverage" , "pytest-cov" ]
[ [ package ] ]
name = "mdit-py-plugins"
version = "0.2.6"
description = "Collection of plugins for markdown-it-py"
category = "dev"
optional = false
python-versions = "~=3.6"
[ package . dependencies ]
markdown-it-py = ">=0.5.8,<2.0.0"
[ package . extras ]
code_style = [ "pre-commit (==2.6)" ]
testing = [ "coverage" , "pytest (>=3.6,<4)" , "pytest-cov" , "pytest-regressions" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "more-itertools"
2021-05-02 22:12:04 +00:00
version = "8.7.0"
2020-12-22 02:18:46 +00:00
description = "More routines for operating on iterables, beyond itertools"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.5"
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "msgpack"
version = "1.0.2"
description = "MessagePack (de)serializer."
category = "dev"
optional = false
python-versions = "*"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "mypy"
2021-05-02 22:12:04 +00:00
version = "0.800"
2020-12-22 02:18:46 +00:00
description = "Optional static typing for Python"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.5"
[ package . dependencies ]
mypy-extensions = ">=0.4.3,<0.5.0"
typed-ast = ">=1.4.0,<1.5.0"
typing-extensions = ">=3.7.4"
[ package . extras ]
dmypy = [ "psutil (>=4.0)" ]
[ [ package ] ]
name = "mypy-extensions"
2020-12-22 02:18:46 +00:00
version = "0.4.3"
description = "Experimental type system extensions for programs checked with the mypy typechecker."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
[ [ package ] ]
name = "nodeenv"
2021-05-02 22:12:04 +00:00
version = "1.6.0"
2020-12-22 02:18:46 +00:00
description = "Node.js virtual environment builder"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
[ [ package ] ]
name = "packaging"
2021-05-02 22:12:04 +00:00
version = "20.9"
2020-12-22 02:18:46 +00:00
description = "Core utilities for Python packages"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ package . dependencies ]
pyparsing = ">=2.0.2"
[ [ package ] ]
name = "parso"
2021-05-02 22:12:04 +00:00
version = "0.8.2"
2020-12-22 02:18:46 +00:00
description = "A Python Parser"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-05-02 22:12:04 +00:00
python-versions = ">=3.6"
2020-09-16 07:41:53 +00:00
[ package . extras ]
2021-05-02 22:12:04 +00:00
qa = [ "flake8 (==3.8.3)" , "mypy (==0.782)" ]
testing = [ "docopt" , "pytest (<6.0.0)" ]
2020-09-16 07:41:53 +00:00
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "pastel"
version = "0.2.1"
description = "Bring colors to your terminal."
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "pathspec"
2020-12-22 02:18:46 +00:00
version = "0.8.1"
description = "Utility library for gitignore style pattern matching of file paths."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[ [ package ] ]
name = "pbr"
2021-05-02 22:12:04 +00:00
version = "5.6.0"
2020-12-22 02:18:46 +00:00
description = "Python Build Reasonableness"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.6"
2020-09-21 23:38:52 +00:00
[ [ package ] ]
name = "peewee"
2021-05-02 22:12:04 +00:00
version = "3.14.4"
2020-09-21 23:38:52 +00:00
description = "a little orm"
category = "main"
optional = false
python-versions = "*"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "pexpect"
2020-12-22 02:18:46 +00:00
version = "4.8.0"
description = "Pexpect allows easy control of interactive console applications."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
[ package . dependencies ]
ptyprocess = ">=0.5"
[ [ package ] ]
name = "pickleshare"
2020-12-22 02:18:46 +00:00
version = "0.7.5"
description = "Tiny 'shelve'-like database with concurrency support"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "pkginfo"
2021-05-02 22:12:04 +00:00
version = "1.7.0"
2020-12-22 02:52:07 +00:00
description = "Query metadatdata from sdists / bdists / installed packages."
category = "dev"
optional = false
python-versions = "*"
[ package . extras ]
testing = [ "nose" , "coverage" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "pluggy"
2020-12-22 02:18:46 +00:00
version = "0.13.1"
description = "plugin and hook calling mechanisms for python"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ package . dependencies ]
2020-12-22 02:18:46 +00:00
importlib-metadata = { version = ">=0.12" , markers = "python_version < \"3.8\"" }
2020-09-16 07:41:53 +00:00
[ package . extras ]
dev = [ "pre-commit" , "tox" ]
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "poetry"
2021-05-02 22:12:04 +00:00
version = "1.1.6"
2020-12-22 02:52:07 +00:00
description = "Python dependency management and packaging made easy."
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[ package . dependencies ]
cachecontrol = { version = ">=0.12.4,<0.13.0" , extras = [ "filecache" ] }
cachy = ">=0.3.0,<0.4.0"
cleo = ">=0.8.1,<0.9.0"
clikit = ">=0.6.2,<0.7.0"
crashtest = { version = ">=0.3.0,<0.4.0" , markers = "python_version >= \"3.6\" and python_version < \"4.0\"" }
html5lib = ">=1.0,<2.0"
importlib-metadata = { version = ">=1.6.0,<2.0.0" , markers = "python_version < \"3.8\"" }
keyring = { version = ">=21.2.0,<22.0.0" , markers = "python_version >= \"3.6\" and python_version < \"4.0\"" }
packaging = ">=20.4,<21.0"
pexpect = ">=4.7.0,<5.0.0"
pkginfo = ">=1.4,<2.0"
2021-05-02 22:12:04 +00:00
poetry-core = ">=1.0.3,<1.1.0"
2020-12-22 02:52:07 +00:00
requests = ">=2.18,<3.0"
requests-toolbelt = ">=0.9.1,<0.10.0"
shellingham = ">=1.1,<2.0"
tomlkit = ">=0.7.0,<1.0.0"
virtualenv = ">=20.0.26,<21.0.0"
[ [ package ] ]
name = "poetry-core"
2021-05-02 22:12:04 +00:00
version = "1.0.3"
2020-12-22 02:52:07 +00:00
description = "Poetry PEP 517 Build Backend"
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[ package . dependencies ]
importlib-metadata = { version = ">=1.7.0,<2.0.0" , markers = "python_version >= \"2.7\" and python_version < \"2.8\" or python_version >= \"3.5\" and python_version < \"3.8\"" }
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "pre-commit"
2021-05-02 22:12:04 +00:00
version = "2.12.1"
2020-12-22 02:18:46 +00:00
description = "A framework for managing and maintaining multi-language pre-commit hooks."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.6.1"
[ package . dependencies ]
cfgv = ">=2.0.0"
identify = ">=1.0.0"
2020-12-22 02:18:46 +00:00
importlib-metadata = { version = "*" , markers = "python_version < \"3.8\"" }
2020-09-16 07:41:53 +00:00
nodeenv = ">=0.11.1"
pyyaml = ">=5.1"
toml = "*"
virtualenv = ">=20.0.8"
[ [ package ] ]
2020-12-22 02:18:46 +00:00
name = "pre-commit-hooks"
version = "3.4.0"
description = "Some out-of-the-box hooks for pre-commit."
2020-09-16 07:41:53 +00:00
category = "dev"
2020-12-22 02:18:46 +00:00
optional = false
python-versions = ">=3.6.1"
[ package . dependencies ]
"ruamel.yaml" = ">=0.15"
toml = "*"
[ [ package ] ]
2020-09-16 07:41:53 +00:00
name = "prompt-toolkit"
2021-05-02 22:12:04 +00:00
version = "3.0.18"
2020-12-22 02:18:46 +00:00
description = "Library for building powerful interactive command lines in Python"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.6.1"
[ package . dependencies ]
wcwidth = "*"
[ [ package ] ]
name = "ptyprocess"
2021-05-02 22:12:04 +00:00
version = "0.7.0"
2020-12-22 02:18:46 +00:00
description = "Run a subprocess in a pseudo terminal"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
[ [ package ] ]
name = "py"
2020-12-22 02:18:46 +00:00
version = "1.10.0"
description = "library with cross-python path, ini-parsing, io, code, log facilities"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "pycparser"
version = "2.20"
description = "C parser in Python"
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "pygments"
2021-05-05 17:48:02 +00:00
version = "2.9.0"
2020-12-22 02:18:46 +00:00
description = "Pygments is a syntax highlighting package written in Python."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.5"
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "pylev"
version = "1.3.0"
description = "A pure Python Levenshtein implementation that's not freaking GPL'd."
category = "dev"
optional = false
python-versions = "*"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "pylint"
2021-05-02 22:12:04 +00:00
version = "2.8.2"
2020-12-22 02:18:46 +00:00
description = "python code static checker"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-05-02 22:12:04 +00:00
python-versions = "~=3.6"
2020-09-16 07:41:53 +00:00
[ package . dependencies ]
2021-05-02 22:12:04 +00:00
astroid = ">=2.5.6,<2.7"
2020-12-22 02:18:46 +00:00
colorama = { version = "*" , markers = "sys_platform == \"win32\"" }
2020-09-16 07:41:53 +00:00
isort = ">=4.2.5,<6"
mccabe = ">=0.6,<0.7"
toml = ">=0.7.1"
[ [ package ] ]
name = "pyparsing"
2020-12-22 02:18:46 +00:00
version = "2.4.7"
description = "Python parsing module"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
[ [ package ] ]
name = "pytest"
2020-12-22 02:18:46 +00:00
version = "5.4.3"
description = "pytest: simple powerful testing with Python"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.5"
[ package . dependencies ]
2020-12-22 02:18:46 +00:00
atomicwrites = { version = ">=1.0" , markers = "sys_platform == \"win32\"" }
2020-09-16 07:41:53 +00:00
attrs = ">=17.4.0"
2020-12-22 02:18:46 +00:00
colorama = { version = "*" , markers = "sys_platform == \"win32\"" }
importlib-metadata = { version = ">=0.12" , markers = "python_version < \"3.8\"" }
2020-09-16 07:41:53 +00:00
more-itertools = ">=4.0.0"
packaging = "*"
pluggy = ">=0.12,<1.0"
py = ">=1.5.0"
wcwidth = "*"
[ package . extras ]
2020-12-22 02:18:46 +00:00
checkqa-mypy = [ "mypy (==v0.761)" ]
2020-09-16 07:41:53 +00:00
testing = [ "argcomplete" , "hypothesis (>=3.56)" , "mock" , "nose" , "requests" , "xmlschema" ]
[ [ package ] ]
name = "pytest-cov"
2021-05-02 22:12:04 +00:00
version = "2.11.1"
2020-12-22 02:18:46 +00:00
description = "Pytest plugin for measuring coverage."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[ package . dependencies ]
2021-05-02 22:12:04 +00:00
coverage = ">=5.2.1"
2020-09-16 07:41:53 +00:00
pytest = ">=4.6"
[ package . extras ]
2020-12-22 02:18:46 +00:00
testing = [ "fields" , "hunter" , "process-tests (==2.0.2)" , "six" , "pytest-xdist" , "virtualenv" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "pytz"
2021-05-02 22:12:04 +00:00
version = "2021.1"
2020-12-22 02:18:46 +00:00
description = "World timezone definitions, modern and historical"
2020-09-18 02:22:48 +00:00
category = "main"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "pywin32-ctypes"
version = "0.2.0"
description = ""
category = "dev"
optional = false
python-versions = "*"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "pyyaml"
2021-05-02 22:12:04 +00:00
version = "5.4.1"
2020-12-22 02:18:46 +00:00
description = "YAML parser and emitter for Python"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-05-02 22:12:04 +00:00
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "regex"
2021-05-02 22:12:04 +00:00
version = "2021.4.4"
2020-12-22 02:18:46 +00:00
description = "Alternative regular expression module, to replace re."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
[ [ package ] ]
name = "reorder-python-imports"
2021-05-02 22:12:04 +00:00
version = "2.5.0"
2020-12-22 02:18:46 +00:00
description = "Tool for reordering python imports"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2020-12-22 02:18:46 +00:00
python-versions = ">=3.6.1"
2020-09-16 07:41:53 +00:00
[ package . dependencies ]
2020-12-22 02:18:46 +00:00
"aspy.refactor-imports" = ">=2.1.0"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "requests"
2020-12-22 02:18:46 +00:00
version = "2.25.1"
description = "Python HTTP for Humans."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[ package . dependencies ]
certifi = ">=2017.4.17"
2020-12-22 02:18:46 +00:00
chardet = ">=3.0.2,<5"
2020-09-16 07:41:53 +00:00
idna = ">=2.5,<3"
2020-12-22 02:18:46 +00:00
urllib3 = ">=1.21.1,<1.27"
2020-09-16 07:41:53 +00:00
[ package . extras ]
security = [ "pyOpenSSL (>=0.14)" , "cryptography (>=1.3.4)" ]
2020-12-22 02:18:46 +00:00
socks = [ "PySocks (>=1.5.6,!=1.5.7)" , "win-inet-pton" ]
2020-09-16 07:41:53 +00:00
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "requests-toolbelt"
version = "0.9.1"
description = "A utility belt for advanced users of python-requests"
category = "dev"
optional = false
python-versions = "*"
[ package . dependencies ]
requests = ">=2.0.1,<3.0.0"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
2020-12-22 02:18:46 +00:00
name = "ruamel.yaml"
2021-05-02 22:12:04 +00:00
version = "0.16.13"
2020-12-22 02:18:46 +00:00
description = "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order"
2020-09-18 02:22:48 +00:00
category = "main"
2020-12-22 02:18:46 +00:00
optional = false
python-versions = "*"
[ package . dependencies ]
2021-05-02 22:12:04 +00:00
"ruamel.yaml.clib" = { version = ">=0.1.2" , markers = "platform_python_implementation == \"CPython\" and python_version < \"3.10\"" }
2020-12-22 02:18:46 +00:00
[ package . extras ]
docs = [ "ryd" ]
jinja2 = [ "ruamel.yaml.jinja2 (>=0.2)" ]
[ [ package ] ]
name = "ruamel.yaml.clib"
version = "0.2.2"
description = "C version of reader, parser and emitter for ruamel.yaml derived from libyaml"
2020-09-18 02:22:48 +00:00
category = "main"
2020-12-22 02:18:46 +00:00
optional = false
python-versions = "*"
[ [ package ] ]
2020-09-16 07:41:53 +00:00
name = "safety"
2021-05-02 22:12:04 +00:00
version = "1.10.3"
2020-12-22 02:18:46 +00:00
description = "Checks installed dependencies for known vulnerabilities."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.5"
[ package . dependencies ]
Click = ">=6.0"
dparse = ">=0.5.1"
packaging = "*"
requests = "*"
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "secretstorage"
2021-05-02 22:12:04 +00:00
version = "3.3.1"
2020-12-22 02:52:07 +00:00
description = "Python bindings to FreeDesktop.org Secret Service API"
category = "dev"
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
cryptography = ">=2.0"
jeepney = ">=0.6"
[ [ package ] ]
name = "shellingham"
2021-05-02 22:12:04 +00:00
version = "1.4.0"
2020-12-22 02:52:07 +00:00
description = "Tool to Detect Surrounding Shell"
category = "dev"
optional = false
python-versions = "!=3.0,!=3.1,!=3.2,!=3.3,>=2.6"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "six"
2021-05-05 17:48:02 +00:00
version = "1.16.0"
2020-12-22 02:18:46 +00:00
description = "Python 2 and 3 compatibility utilities"
2020-09-18 02:22:48 +00:00
category = "main"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
[ [ package ] ]
name = "smmap"
2021-05-02 22:12:04 +00:00
version = "4.0.0"
2020-12-22 02:18:46 +00:00
description = "A pure Python implementation of a sliding window memory map manager"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-05-02 22:12:04 +00:00
python-versions = ">=3.5"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "snowballstemmer"
2021-05-02 22:12:04 +00:00
version = "2.1.0"
description = "This package provides 29 stemmers for 28 languages generated from Snowball algorithms."
2020-12-22 02:18:46 +00:00
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
[ [ package ] ]
name = "sphinx"
2021-05-02 22:12:04 +00:00
version = "3.5.4"
2020-12-22 02:18:46 +00:00
description = "Python documentation generator"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.5"
[ package . dependencies ]
alabaster = ">=0.7,<0.8"
babel = ">=1.3"
2020-12-22 02:18:46 +00:00
colorama = { version = ">=0.3.5" , markers = "sys_platform == \"win32\"" }
2021-05-02 22:12:04 +00:00
docutils = ">=0.12,<0.17"
2020-09-16 07:41:53 +00:00
imagesize = "*"
2020-12-22 02:18:46 +00:00
Jinja2 = ">=2.3"
2020-09-16 07:41:53 +00:00
packaging = "*"
2020-12-22 02:18:46 +00:00
Pygments = ">=2.0"
2020-09-16 07:41:53 +00:00
requests = ">=2.5.0"
snowballstemmer = ">=1.1"
sphinxcontrib-applehelp = "*"
sphinxcontrib-devhelp = "*"
sphinxcontrib-htmlhelp = "*"
sphinxcontrib-jsmath = "*"
sphinxcontrib-qthelp = "*"
sphinxcontrib-serializinghtml = "*"
[ package . extras ]
docs = [ "sphinxcontrib-websupport" ]
2021-05-02 22:12:04 +00:00
lint = [ "flake8 (>=3.5.0)" , "isort" , "mypy (>=0.800)" , "docutils-stubs" ]
2020-12-22 02:18:46 +00:00
test = [ "pytest" , "pytest-cov" , "html5lib" , "cython" , "typed-ast" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "sphinx-autodoc-typehints"
2021-05-02 22:12:04 +00:00
version = "1.12.0"
2020-12-22 02:18:46 +00:00
description = "Type hints (PEP 484) support for the Sphinx autodoc extension"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-05-02 22:12:04 +00:00
python-versions = ">=3.6"
2020-09-16 07:41:53 +00:00
[ package . dependencies ]
Sphinx = ">=3.0"
[ package . extras ]
2020-12-22 02:18:46 +00:00
test = [ "pytest (>=3.1.0)" , "typing-extensions (>=3.5)" , "sphobjinv (>=2.0)" , "Sphinx (>=3.2.0)" , "dataclasses" ]
2020-09-16 07:41:53 +00:00
type_comments = [ "typed-ast (>=1.4.0)" ]
[ [ package ] ]
name = "sphinxcontrib-applehelp"
2020-12-22 02:18:46 +00:00
version = "1.0.2"
description = "sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.5"
[ package . extras ]
lint = [ "flake8" , "mypy" , "docutils-stubs" ]
test = [ "pytest" ]
[ [ package ] ]
name = "sphinxcontrib-devhelp"
2020-12-22 02:18:46 +00:00
version = "1.0.2"
description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.5"
[ package . extras ]
lint = [ "flake8" , "mypy" , "docutils-stubs" ]
test = [ "pytest" ]
[ [ package ] ]
name = "sphinxcontrib-htmlhelp"
2020-12-22 02:18:46 +00:00
version = "1.0.3"
description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.5"
[ package . extras ]
lint = [ "flake8" , "mypy" , "docutils-stubs" ]
test = [ "pytest" , "html5lib" ]
[ [ package ] ]
name = "sphinxcontrib-jsmath"
2020-12-22 02:18:46 +00:00
version = "1.0.1"
description = "A sphinx extension which renders display math in HTML via JavaScript"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.5"
[ package . extras ]
test = [ "pytest" , "flake8" , "mypy" ]
[ [ package ] ]
name = "sphinxcontrib-qthelp"
2020-12-22 02:18:46 +00:00
version = "1.0.3"
description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.5"
[ package . extras ]
lint = [ "flake8" , "mypy" , "docutils-stubs" ]
test = [ "pytest" ]
[ [ package ] ]
name = "sphinxcontrib-serializinghtml"
2020-12-22 02:18:46 +00:00
version = "1.1.4"
description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.5"
[ package . extras ]
lint = [ "flake8" , "mypy" , "docutils-stubs" ]
test = [ "pytest" ]
[ [ package ] ]
name = "stevedore"
2020-12-22 02:18:46 +00:00
version = "3.3.0"
description = "Manage dynamic plugins for Python applications"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
2020-12-22 02:18:46 +00:00
importlib-metadata = { version = ">=1.7.0" , markers = "python_version < \"3.8\"" }
2020-09-16 07:41:53 +00:00
pbr = ">=2.0.0,<2.1.0 || >2.1.0"
[ [ package ] ]
name = "toml"
2020-12-22 02:18:46 +00:00
version = "0.10.2"
description = "Python Library for Tom's Obvious, Minimal Language"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2020-12-22 02:18:46 +00:00
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
2020-09-16 07:41:53 +00:00
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "tomlkit"
version = "0.7.0"
description = "Style preserving TOML library"
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "tox"
2021-05-05 17:48:02 +00:00
version = "3.23.1"
2020-12-22 02:18:46 +00:00
description = "tox is a generic virtualenv management and test command line tool"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
[ package . dependencies ]
2020-12-22 02:18:46 +00:00
colorama = { version = ">=0.4.1" , markers = "platform_system == \"Windows\"" }
2020-09-16 07:41:53 +00:00
filelock = ">=3.0.0"
2021-05-02 22:12:04 +00:00
importlib-metadata = { version = ">=0.12" , markers = "python_version < \"3.8\"" }
2020-09-16 07:41:53 +00:00
packaging = ">=14"
pluggy = ">=0.12.0"
py = ">=1.4.17"
six = ">=1.14.0"
toml = ">=0.9.4"
virtualenv = ">=16.0.0,<20.0.0 || >20.0.0,<20.0.1 || >20.0.1,<20.0.2 || >20.0.2,<20.0.3 || >20.0.3,<20.0.4 || >20.0.4,<20.0.5 || >20.0.5,<20.0.6 || >20.0.6,<20.0.7 || >20.0.7"
[ package . extras ]
docs = [ "pygments-github-lexers (>=0.0.5)" , "sphinx (>=2.0.0)" , "sphinxcontrib-autoprogram (>=0.1.5)" , "towncrier (>=18.5.0)" ]
2021-05-02 22:12:04 +00:00
testing = [ "flaky (>=3.4.0)" , "freezegun (>=0.3.11)" , "psutil (>=5.6.1)" , "pytest (>=4.0.0)" , "pytest-cov (>=2.5.1)" , "pytest-mock (>=1.10.0)" , "pytest-randomly (>=1.0.0)" , "pytest-xdist (>=1.22.2)" , "pathlib2 (>=2.3.3)" ]
2020-09-16 07:41:53 +00:00
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "tox-poetry-installer"
2021-05-02 22:12:04 +00:00
version = "0.7.0"
description = "A plugin for Tox that lets you install test environment dependencies from the Poetry lockfile"
2020-12-22 02:52:07 +00:00
category = "dev"
optional = false
python-versions = ">=3.6.1,<4.0.0"
[ package . dependencies ]
poetry = { version = ">=1.0.0,<2.0.0" , optional = true , markers = "extra == \"poetry\"" }
poetry-core = ">=1.0.0,<2.0.0"
2021-05-02 22:12:04 +00:00
tox = ">=3.8.0,<4.0.0"
2020-12-22 02:52:07 +00:00
[ package . extras ]
poetry = [ "poetry (>=1.0.0,<2.0.0)" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "traitlets"
2020-12-22 02:18:46 +00:00
version = "5.0.5"
description = "Traitlets Python configuration system"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.7"
[ package . dependencies ]
ipython-genutils = "*"
[ package . extras ]
test = [ "pytest" ]
[ [ package ] ]
name = "typed-ast"
2021-05-02 22:12:04 +00:00
version = "1.4.3"
2020-12-22 02:18:46 +00:00
description = "a fork of Python 2 and 3 ast modules with type comment support"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
[ [ package ] ]
name = "typing-extensions"
2021-05-02 22:12:04 +00:00
version = "3.10.0.0"
2020-12-22 02:18:46 +00:00
description = "Backported and Experimental Type Hints for Python 3.5+"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
[ [ package ] ]
name = "urllib3"
2021-05-02 22:12:04 +00:00
version = "1.26.4"
2020-12-22 02:18:46 +00:00
description = "HTTP library with thread-safe connection pooling, file post, and more."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
[ package . extras ]
2020-12-22 02:18:46 +00:00
secure = [ "pyOpenSSL (>=0.14)" , "cryptography (>=1.3.4)" , "idna (>=2.0.0)" , "certifi" , "ipaddress" ]
socks = [ "PySocks (>=1.5.6,!=1.5.7,<2.0)" ]
2021-05-02 22:12:04 +00:00
brotli = [ "brotlipy (>=0.6.0)" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "virtualenv"
2021-05-05 17:48:02 +00:00
version = "20.4.5"
2020-12-22 02:18:46 +00:00
description = "Virtual Python Environment builder"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7"
[ package . dependencies ]
appdirs = ">=1.4.3,<2"
distlib = ">=0.3.1,<1"
filelock = ">=3.0.0,<4"
2020-12-22 02:18:46 +00:00
importlib-metadata = { version = ">=0.12" , markers = "python_version < \"3.8\"" }
2020-09-16 07:41:53 +00:00
six = ">=1.9.0,<2"
[ package . extras ]
docs = [ "proselint (>=0.10.2)" , "sphinx (>=3)" , "sphinx-argparse (>=0.2.5)" , "sphinx-rtd-theme (>=0.4.3)" , "towncrier (>=19.9.0rc1)" ]
2021-05-02 22:12:04 +00:00
testing = [ "coverage (>=4)" , "coverage-enable-subprocess (>=1)" , "flaky (>=3)" , "pytest (>=4)" , "pytest-env (>=0.6.2)" , "pytest-freezegun (>=0.4.1)" , "pytest-mock (>=2)" , "pytest-randomly (>=1)" , "pytest-timeout (>=1)" , "packaging (>=20.0)" , "xonsh (>=0.9.16)" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "wcwidth"
2020-12-22 02:18:46 +00:00
version = "0.2.5"
description = "Measures the displayed width of unicode strings in a terminal"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "webencodings"
version = "0.5.1"
description = "Character encoding aliases for legacy web content"
category = "dev"
optional = false
python-versions = "*"
2020-09-18 02:22:48 +00:00
[ [ package ] ]
name = "werkzeug"
version = "1.0.1"
description = "The comprehensive WSGI web application library."
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[ package . extras ]
dev = [ "pytest" , "pytest-timeout" , "coverage" , "tox" , "sphinx" , "pallets-sphinx-themes" , "sphinx-issues" ]
watchdog = [ "watchdog" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "wrapt"
2020-12-22 02:18:46 +00:00
version = "1.12.1"
description = "Module for decorators, wrappers and monkey patching."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
[ [ package ] ]
name = "zipp"
2021-05-02 22:12:04 +00:00
version = "3.4.1"
2020-12-22 02:18:46 +00:00
description = "Backport of pathlib-compatible object wrapper for zip files"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.6"
[ package . extras ]
2021-05-02 22:12:04 +00:00
docs = [ "sphinx" , "jaraco.packaging (>=8.2)" , "rst.linker (>=1.9)" ]
testing = [ "pytest (>=4.6)" , "pytest-checkdocs (>=1.2.3)" , "pytest-flake8" , "pytest-cov" , "pytest-enabler" , "jaraco.itertools" , "func-timeout" , "pytest-black (>=0.3.7)" , "pytest-mypy" ]
2020-09-16 07:41:53 +00:00
[ metadata ]
2020-12-22 02:18:46 +00:00
lock-version = "1.1"
2020-09-16 07:41:53 +00:00
python-versions = "^3.7"
2021-05-02 22:12:04 +00:00
content-hash = "398575a87d787fb87b2993863207aa6375eadb5c4012fc6f849e51c40b01548f"
2020-09-16 07:41:53 +00:00
[ metadata . files ]
alabaster = [
{ file = "alabaster-0.7.12-py2.py3-none-any.whl" , hash = "sha256:446438bdcca0e05bd45ea2de1668c1d9b032e1a9154c2c259092d77031ddd359" } ,
{ file = "alabaster-0.7.12.tar.gz" , hash = "sha256:a661d72d58e6ea8a57f7a86e37d86716863ee5e92788398526d58b26a4e4dc02" } ,
]
2020-09-18 02:22:48 +00:00
aniso8601 = [
2021-05-02 22:12:04 +00:00
{ file = "aniso8601-9.0.1-py2.py3-none-any.whl" , hash = "sha256:1d2b7ef82963909e93c4f24ce48d4de9e66009a21bf1c1e1c85bdd0812fe412f" } ,
{ file = "aniso8601-9.0.1.tar.gz" , hash = "sha256:72e3117667eedf66951bb2d93f4296a56b94b078a8a95905a052611fb3f1b973" } ,
2020-09-18 02:22:48 +00:00
]
2020-09-16 07:41:53 +00:00
appdirs = [
{ file = "appdirs-1.4.4-py2.py3-none-any.whl" , hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128" } ,
{ file = "appdirs-1.4.4.tar.gz" , hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41" } ,
]
appnope = [
2020-12-22 02:18:46 +00:00
{ file = "appnope-0.1.2-py2.py3-none-any.whl" , hash = "sha256:93aa393e9d6c54c5cd570ccadd8edad61ea0c4b9ea7a01409020c9aa019eb442" } ,
{ file = "appnope-0.1.2.tar.gz" , hash = "sha256:dd83cd4b5b460958838f6eb3000c660b1f9caf2a5b1de4264e941512f603258a" } ,
2020-09-16 07:41:53 +00:00
]
"aspy.refactor-imports" = [
2021-05-02 22:12:04 +00:00
{ file = "aspy.refactor_imports-2.2.0-py2.py3-none-any.whl" , hash = "sha256:7a18039d2e8be6b02b4791ce98891deb46b459b575c52ed35ab818c4eaa0c098" } ,
{ file = "aspy.refactor_imports-2.2.0.tar.gz" , hash = "sha256:78ca24122963fd258ebfc4a8dc708d23a18040ee39dca8767675821e84e9ea0a" } ,
2020-09-16 07:41:53 +00:00
]
astroid = [
2021-05-02 22:12:04 +00:00
{ file = "astroid-2.5.6-py3-none-any.whl" , hash = "sha256:4db03ab5fc3340cf619dbc25e42c2cc3755154ce6009469766d7143d1fc2ee4e" } ,
{ file = "astroid-2.5.6.tar.gz" , hash = "sha256:8a398dfce302c13f14bab13e2b14fe385d32b73f4e4853b9bdfb64598baa1975" } ,
2020-09-16 07:41:53 +00:00
]
atomicwrites = [
{ file = "atomicwrites-1.4.0-py2.py3-none-any.whl" , hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197" } ,
{ file = "atomicwrites-1.4.0.tar.gz" , hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a" } ,
]
attrs = [
2020-12-22 02:18:46 +00:00
{ file = "attrs-20.3.0-py2.py3-none-any.whl" , hash = "sha256:31b2eced602aa8423c2aea9c76a724617ed67cf9513173fd3a4f03e3a929c7e6" } ,
{ file = "attrs-20.3.0.tar.gz" , hash = "sha256:832aa3cde19744e49938b91fea06d69ecb9e649c93ba974535d08ad92164f700" } ,
2020-09-16 07:41:53 +00:00
]
babel = [
2021-05-02 22:12:04 +00:00
{ file = "Babel-2.9.1-py2.py3-none-any.whl" , hash = "sha256:ab49e12b91d937cd11f0b67cb259a57ab4ad2b59ac7a3b41d6c06c0ac5b0def9" } ,
{ file = "Babel-2.9.1.tar.gz" , hash = "sha256:bc0c176f9f6a994582230df350aa6e05ba2ebe4b3ac317eab29d9be5d2768da0" } ,
2020-09-16 07:41:53 +00:00
]
backcall = [
{ file = "backcall-0.2.0-py2.py3-none-any.whl" , hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255" } ,
{ file = "backcall-0.2.0.tar.gz" , hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e" } ,
]
bandit = [
2020-12-22 02:18:46 +00:00
{ file = "bandit-1.7.0-py3-none-any.whl" , hash = "sha256:216be4d044209fa06cf2a3e51b319769a51be8318140659719aa7a115c35ed07" } ,
{ file = "bandit-1.7.0.tar.gz" , hash = "sha256:8a4c7415254d75df8ff3c3b15cfe9042ecee628a1e40b44c15a98890fbfc2608" } ,
2020-09-16 07:41:53 +00:00
]
2021-05-02 22:12:04 +00:00
black = [
2021-05-05 17:48:02 +00:00
{ file = "black-21.5b0-py3-none-any.whl" , hash = "sha256:0e80435b8a88f383c9149ae89d671eb2095b72344b0fe8a1d61d2ff5110ed173" } ,
{ file = "black-21.5b0.tar.gz" , hash = "sha256:9dc2042018ca10735366d944c2c12d9cad6dec74a3d5f679d09384ea185d9943" } ,
2021-05-02 22:12:04 +00:00
]
2020-12-22 02:18:46 +00:00
blacken-docs = [
2021-05-02 22:12:04 +00:00
{ file = "blacken_docs-1.10.0-py2.py3-none-any.whl" , hash = "sha256:149197a0b17e83121fc10aca9eda1417728fdccebde930a6722f97d87ed30f4b" } ,
{ file = "blacken_docs-1.10.0.tar.gz" , hash = "sha256:e2121c95bf2f8a3ebb3110776d276f850f63b8e5753773ba2b4d0f415d862f23" } ,
2020-12-22 02:18:46 +00:00
]
2020-12-22 02:52:07 +00:00
cachecontrol = [
{ file = "CacheControl-0.12.6-py2.py3-none-any.whl" , hash = "sha256:10d056fa27f8563a271b345207402a6dcce8efab7e5b377e270329c62471b10d" } ,
{ file = "CacheControl-0.12.6.tar.gz" , hash = "sha256:be9aa45477a134aee56c8fac518627e1154df063e85f67d4f83ce0ccc23688e8" } ,
]
2020-09-16 07:41:53 +00:00
cached-property = [
2020-12-22 02:18:46 +00:00
{ file = "cached-property-1.5.2.tar.gz" , hash = "sha256:9fa5755838eecbb2d234c3aa390bd80fbd3ac6b6869109bfc1b499f7bd89a130" } ,
{ file = "cached_property-1.5.2-py2.py3-none-any.whl" , hash = "sha256:df4f613cf7ad9a588cc381aaf4a512d26265ecebd5eb9e1ba12f1319eb85a6a0" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
cachy = [
{ file = "cachy-0.3.0-py2.py3-none-any.whl" , hash = "sha256:338ca09c8860e76b275aff52374330efedc4d5a5e45dc1c5b539c1ead0786fe7" } ,
{ file = "cachy-0.3.0.tar.gz" , hash = "sha256:186581f4ceb42a0bbe040c407da73c14092379b1e4c0e327fdb72ae4a9b269b1" } ,
]
2020-09-16 07:41:53 +00:00
certifi = [
2020-12-22 02:18:46 +00:00
{ file = "certifi-2020.12.5-py2.py3-none-any.whl" , hash = "sha256:719a74fb9e33b9bd44cc7f3a8d94bc35e4049deebe19ba7d8e108280cfd59830" } ,
{ file = "certifi-2020.12.5.tar.gz" , hash = "sha256:1a4995114262bffbc2413b159f2a1a480c969de6e6eb13ee966d470af86af59c" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
cffi = [
2021-05-02 22:12:04 +00:00
{ file = "cffi-1.14.5-cp27-cp27m-macosx_10_9_x86_64.whl" , hash = "sha256:bb89f306e5da99f4d922728ddcd6f7fcebb3241fc40edebcb7284d7514741991" } ,
{ file = "cffi-1.14.5-cp27-cp27m-manylinux1_i686.whl" , hash = "sha256:34eff4b97f3d982fb93e2831e6750127d1355a923ebaeeb565407b3d2f8d41a1" } ,
{ file = "cffi-1.14.5-cp27-cp27m-manylinux1_x86_64.whl" , hash = "sha256:99cd03ae7988a93dd00bcd9d0b75e1f6c426063d6f03d2f90b89e29b25b82dfa" } ,
{ file = "cffi-1.14.5-cp27-cp27m-win32.whl" , hash = "sha256:65fa59693c62cf06e45ddbb822165394a288edce9e276647f0046e1ec26920f3" } ,
{ file = "cffi-1.14.5-cp27-cp27m-win_amd64.whl" , hash = "sha256:51182f8927c5af975fece87b1b369f722c570fe169f9880764b1ee3bca8347b5" } ,
{ file = "cffi-1.14.5-cp27-cp27mu-manylinux1_i686.whl" , hash = "sha256:43e0b9d9e2c9e5d152946b9c5fe062c151614b262fda2e7b201204de0b99e482" } ,
{ file = "cffi-1.14.5-cp27-cp27mu-manylinux1_x86_64.whl" , hash = "sha256:cbde590d4faaa07c72bf979734738f328d239913ba3e043b1e98fe9a39f8b2b6" } ,
{ file = "cffi-1.14.5-cp35-cp35m-macosx_10_9_x86_64.whl" , hash = "sha256:5de7970188bb46b7bf9858eb6890aad302577a5f6f75091fd7cdd3ef13ef3045" } ,
{ file = "cffi-1.14.5-cp35-cp35m-manylinux1_i686.whl" , hash = "sha256:a465da611f6fa124963b91bf432d960a555563efe4ed1cc403ba5077b15370aa" } ,
{ file = "cffi-1.14.5-cp35-cp35m-manylinux1_x86_64.whl" , hash = "sha256:d42b11d692e11b6634f7613ad8df5d6d5f8875f5d48939520d351007b3c13406" } ,
{ file = "cffi-1.14.5-cp35-cp35m-win32.whl" , hash = "sha256:72d8d3ef52c208ee1c7b2e341f7d71c6fd3157138abf1a95166e6165dd5d4369" } ,
{ file = "cffi-1.14.5-cp35-cp35m-win_amd64.whl" , hash = "sha256:29314480e958fd8aab22e4a58b355b629c59bf5f2ac2492b61e3dc06d8c7a315" } ,
{ file = "cffi-1.14.5-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:3d3dd4c9e559eb172ecf00a2a7517e97d1e96de2a5e610bd9b68cea3925b4892" } ,
{ file = "cffi-1.14.5-cp36-cp36m-manylinux1_i686.whl" , hash = "sha256:48e1c69bbacfc3d932221851b39d49e81567a4d4aac3b21258d9c24578280058" } ,
{ file = "cffi-1.14.5-cp36-cp36m-manylinux1_x86_64.whl" , hash = "sha256:69e395c24fc60aad6bb4fa7e583698ea6cc684648e1ffb7fe85e3c1ca131a7d5" } ,
{ file = "cffi-1.14.5-cp36-cp36m-manylinux2014_aarch64.whl" , hash = "sha256:9e93e79c2551ff263400e1e4be085a1210e12073a31c2011dbbda14bda0c6132" } ,
{ file = "cffi-1.14.5-cp36-cp36m-win32.whl" , hash = "sha256:58e3f59d583d413809d60779492342801d6e82fefb89c86a38e040c16883be53" } ,
{ file = "cffi-1.14.5-cp36-cp36m-win_amd64.whl" , hash = "sha256:005a36f41773e148deac64b08f233873a4d0c18b053d37da83f6af4d9087b813" } ,
{ file = "cffi-1.14.5-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:2894f2df484ff56d717bead0a5c2abb6b9d2bf26d6960c4604d5c48bbc30ee73" } ,
{ file = "cffi-1.14.5-cp37-cp37m-manylinux1_i686.whl" , hash = "sha256:0857f0ae312d855239a55c81ef453ee8fd24136eaba8e87a2eceba644c0d4c06" } ,
{ file = "cffi-1.14.5-cp37-cp37m-manylinux1_x86_64.whl" , hash = "sha256:cd2868886d547469123fadc46eac7ea5253ea7fcb139f12e1dfc2bbd406427d1" } ,
{ file = "cffi-1.14.5-cp37-cp37m-manylinux2014_aarch64.whl" , hash = "sha256:35f27e6eb43380fa080dccf676dece30bef72e4a67617ffda586641cd4508d49" } ,
{ file = "cffi-1.14.5-cp37-cp37m-win32.whl" , hash = "sha256:9ff227395193126d82e60319a673a037d5de84633f11279e336f9c0f189ecc62" } ,
{ file = "cffi-1.14.5-cp37-cp37m-win_amd64.whl" , hash = "sha256:9cf8022fb8d07a97c178b02327b284521c7708d7c71a9c9c355c178ac4bbd3d4" } ,
{ file = "cffi-1.14.5-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:8b198cec6c72df5289c05b05b8b0969819783f9418e0409865dac47288d2a053" } ,
{ file = "cffi-1.14.5-cp38-cp38-manylinux1_i686.whl" , hash = "sha256:ad17025d226ee5beec591b52800c11680fca3df50b8b29fe51d882576e039ee0" } ,
{ file = "cffi-1.14.5-cp38-cp38-manylinux1_x86_64.whl" , hash = "sha256:6c97d7350133666fbb5cf4abdc1178c812cb205dc6f41d174a7b0f18fb93337e" } ,
{ file = "cffi-1.14.5-cp38-cp38-manylinux2014_aarch64.whl" , hash = "sha256:8ae6299f6c68de06f136f1f9e69458eae58f1dacf10af5c17353eae03aa0d827" } ,
{ file = "cffi-1.14.5-cp38-cp38-win32.whl" , hash = "sha256:b85eb46a81787c50650f2392b9b4ef23e1f126313b9e0e9013b35c15e4288e2e" } ,
{ file = "cffi-1.14.5-cp38-cp38-win_amd64.whl" , hash = "sha256:1f436816fc868b098b0d63b8920de7d208c90a67212546d02f84fe78a9c26396" } ,
{ file = "cffi-1.14.5-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:1071534bbbf8cbb31b498d5d9db0f274f2f7a865adca4ae429e147ba40f73dea" } ,
{ file = "cffi-1.14.5-cp39-cp39-manylinux1_i686.whl" , hash = "sha256:9de2e279153a443c656f2defd67769e6d1e4163952b3c622dcea5b08a6405322" } ,
{ file = "cffi-1.14.5-cp39-cp39-manylinux1_x86_64.whl" , hash = "sha256:6e4714cc64f474e4d6e37cfff31a814b509a35cb17de4fb1999907575684479c" } ,
{ file = "cffi-1.14.5-cp39-cp39-manylinux2014_aarch64.whl" , hash = "sha256:158d0d15119b4b7ff6b926536763dc0714313aa59e320ddf787502c70c4d4bee" } ,
{ file = "cffi-1.14.5-cp39-cp39-win32.whl" , hash = "sha256:afb29c1ba2e5a3736f1c301d9d0abe3ec8b86957d04ddfa9d7a6a42b9367e396" } ,
{ file = "cffi-1.14.5-cp39-cp39-win_amd64.whl" , hash = "sha256:f2d45f97ab6bb54753eab54fffe75aaf3de4ff2341c9daee1987ee1837636f1d" } ,
{ file = "cffi-1.14.5.tar.gz" , hash = "sha256:fd78e5fee591709f32ef6edb9a015b4aa1a5022598e36227500c8f4e02328d9c" } ,
2020-12-22 02:52:07 +00:00
]
2020-09-16 07:41:53 +00:00
cfgv = [
{ file = "cfgv-3.2.0-py2.py3-none-any.whl" , hash = "sha256:32e43d604bbe7896fe7c248a9c2276447dbef840feb28fe20494f62af110211d" } ,
{ file = "cfgv-3.2.0.tar.gz" , hash = "sha256:cf22deb93d4bcf92f345a5c3cd39d3d41d6340adc60c78bbbd6588c384fda6a1" } ,
]
chardet = [
2020-12-22 02:18:46 +00:00
{ file = "chardet-4.0.0-py2.py3-none-any.whl" , hash = "sha256:f864054d66fd9118f2e67044ac8981a54775ec5b67aed0441892edb553d21da5" } ,
{ file = "chardet-4.0.0.tar.gz" , hash = "sha256:0d6f53a15db4120f2b08c94f11e7d93d2c911ee118b6b30a04ec3ee8310179fa" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
cleo = [
{ file = "cleo-0.8.1-py2.py3-none-any.whl" , hash = "sha256:141cda6dc94a92343be626bb87a0b6c86ae291dfc732a57bf04310d4b4201753" } ,
{ file = "cleo-0.8.1.tar.gz" , hash = "sha256:3d0e22d30117851b45970b6c14aca4ab0b18b1b53c8af57bed13208147e4069f" } ,
]
2020-09-16 07:41:53 +00:00
click = [
{ file = "click-7.1.2-py2.py3-none-any.whl" , hash = "sha256:dacca89f4bfadd5de3d7489b7c8a566eee0d3676333fbb50030263894c38c0dc" } ,
{ file = "click-7.1.2.tar.gz" , hash = "sha256:d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a" } ,
]
2020-12-22 02:52:07 +00:00
clikit = [
{ file = "clikit-0.6.2-py2.py3-none-any.whl" , hash = "sha256:71268e074e68082306e23d7369a7b99f824a0ef926e55ba2665e911f7208489e" } ,
{ file = "clikit-0.6.2.tar.gz" , hash = "sha256:442ee5db9a14120635c5990bcdbfe7c03ada5898291f0c802f77be71569ded59" } ,
]
2020-09-16 07:41:53 +00:00
colorama = [
2020-12-22 02:18:46 +00:00
{ file = "colorama-0.4.4-py2.py3-none-any.whl" , hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2" } ,
{ file = "colorama-0.4.4.tar.gz" , hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b" } ,
2020-09-16 07:41:53 +00:00
]
coverage = [
2021-05-02 22:12:04 +00:00
{ file = "coverage-5.5-cp27-cp27m-macosx_10_9_x86_64.whl" , hash = "sha256:b6d534e4b2ab35c9f93f46229363e17f63c53ad01330df9f2d6bd1187e5eaacf" } ,
{ file = "coverage-5.5-cp27-cp27m-manylinux1_i686.whl" , hash = "sha256:b7895207b4c843c76a25ab8c1e866261bcfe27bfaa20c192de5190121770672b" } ,
{ file = "coverage-5.5-cp27-cp27m-manylinux1_x86_64.whl" , hash = "sha256:c2723d347ab06e7ddad1a58b2a821218239249a9e4365eaff6649d31180c1669" } ,
{ file = "coverage-5.5-cp27-cp27m-manylinux2010_i686.whl" , hash = "sha256:900fbf7759501bc7807fd6638c947d7a831fc9fdf742dc10f02956ff7220fa90" } ,
{ file = "coverage-5.5-cp27-cp27m-manylinux2010_x86_64.whl" , hash = "sha256:004d1880bed2d97151facef49f08e255a20ceb6f9432df75f4eef018fdd5a78c" } ,
{ file = "coverage-5.5-cp27-cp27m-win32.whl" , hash = "sha256:06191eb60f8d8a5bc046f3799f8a07a2d7aefb9504b0209aff0b47298333302a" } ,
{ file = "coverage-5.5-cp27-cp27m-win_amd64.whl" , hash = "sha256:7501140f755b725495941b43347ba8a2777407fc7f250d4f5a7d2a1050ba8e82" } ,
{ file = "coverage-5.5-cp27-cp27mu-manylinux1_i686.whl" , hash = "sha256:372da284cfd642d8e08ef606917846fa2ee350f64994bebfbd3afb0040436905" } ,
{ file = "coverage-5.5-cp27-cp27mu-manylinux1_x86_64.whl" , hash = "sha256:8963a499849a1fc54b35b1c9f162f4108017b2e6db2c46c1bed93a72262ed083" } ,
{ file = "coverage-5.5-cp27-cp27mu-manylinux2010_i686.whl" , hash = "sha256:869a64f53488f40fa5b5b9dcb9e9b2962a66a87dab37790f3fcfb5144b996ef5" } ,
{ file = "coverage-5.5-cp27-cp27mu-manylinux2010_x86_64.whl" , hash = "sha256:4a7697d8cb0f27399b0e393c0b90f0f1e40c82023ea4d45d22bce7032a5d7b81" } ,
{ file = "coverage-5.5-cp310-cp310-macosx_10_14_x86_64.whl" , hash = "sha256:8d0a0725ad7c1a0bcd8d1b437e191107d457e2ec1084b9f190630a4fb1af78e6" } ,
{ file = "coverage-5.5-cp310-cp310-manylinux1_x86_64.whl" , hash = "sha256:51cb9476a3987c8967ebab3f0fe144819781fca264f57f89760037a2ea191cb0" } ,
{ file = "coverage-5.5-cp310-cp310-win_amd64.whl" , hash = "sha256:c0891a6a97b09c1f3e073a890514d5012eb256845c451bd48f7968ef939bf4ae" } ,
{ file = "coverage-5.5-cp35-cp35m-macosx_10_9_x86_64.whl" , hash = "sha256:3487286bc29a5aa4b93a072e9592f22254291ce96a9fbc5251f566b6b7343cdb" } ,
{ file = "coverage-5.5-cp35-cp35m-manylinux1_i686.whl" , hash = "sha256:deee1077aae10d8fa88cb02c845cfba9b62c55e1183f52f6ae6a2df6a2187160" } ,
{ file = "coverage-5.5-cp35-cp35m-manylinux1_x86_64.whl" , hash = "sha256:f11642dddbb0253cc8853254301b51390ba0081750a8ac03f20ea8103f0c56b6" } ,
{ file = "coverage-5.5-cp35-cp35m-manylinux2010_i686.whl" , hash = "sha256:6c90e11318f0d3c436a42409f2749ee1a115cd8b067d7f14c148f1ce5574d701" } ,
{ file = "coverage-5.5-cp35-cp35m-manylinux2010_x86_64.whl" , hash = "sha256:30c77c1dc9f253283e34c27935fded5015f7d1abe83bc7821680ac444eaf7793" } ,
{ file = "coverage-5.5-cp35-cp35m-win32.whl" , hash = "sha256:9a1ef3b66e38ef8618ce5fdc7bea3d9f45f3624e2a66295eea5e57966c85909e" } ,
{ file = "coverage-5.5-cp35-cp35m-win_amd64.whl" , hash = "sha256:972c85d205b51e30e59525694670de6a8a89691186012535f9d7dbaa230e42c3" } ,
{ file = "coverage-5.5-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:af0e781009aaf59e25c5a678122391cb0f345ac0ec272c7961dc5455e1c40066" } ,
{ file = "coverage-5.5-cp36-cp36m-manylinux1_i686.whl" , hash = "sha256:74d881fc777ebb11c63736622b60cb9e4aee5cace591ce274fb69e582a12a61a" } ,
{ file = "coverage-5.5-cp36-cp36m-manylinux1_x86_64.whl" , hash = "sha256:92b017ce34b68a7d67bd6d117e6d443a9bf63a2ecf8567bb3d8c6c7bc5014465" } ,
{ file = "coverage-5.5-cp36-cp36m-manylinux2010_i686.whl" , hash = "sha256:d636598c8305e1f90b439dbf4f66437de4a5e3c31fdf47ad29542478c8508bbb" } ,
{ file = "coverage-5.5-cp36-cp36m-manylinux2010_x86_64.whl" , hash = "sha256:41179b8a845742d1eb60449bdb2992196e211341818565abded11cfa90efb821" } ,
{ file = "coverage-5.5-cp36-cp36m-win32.whl" , hash = "sha256:040af6c32813fa3eae5305d53f18875bedd079960822ef8ec067a66dd8afcd45" } ,
{ file = "coverage-5.5-cp36-cp36m-win_amd64.whl" , hash = "sha256:5fec2d43a2cc6965edc0bb9e83e1e4b557f76f843a77a2496cbe719583ce8184" } ,
{ file = "coverage-5.5-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:18ba8bbede96a2c3dde7b868de9dcbd55670690af0988713f0603f037848418a" } ,
{ file = "coverage-5.5-cp37-cp37m-manylinux1_i686.whl" , hash = "sha256:2910f4d36a6a9b4214bb7038d537f015346f413a975d57ca6b43bf23d6563b53" } ,
{ file = "coverage-5.5-cp37-cp37m-manylinux1_x86_64.whl" , hash = "sha256:f0b278ce10936db1a37e6954e15a3730bea96a0997c26d7fee88e6c396c2086d" } ,
{ file = "coverage-5.5-cp37-cp37m-manylinux2010_i686.whl" , hash = "sha256:796c9c3c79747146ebd278dbe1e5c5c05dd6b10cc3bcb8389dfdf844f3ead638" } ,
{ file = "coverage-5.5-cp37-cp37m-manylinux2010_x86_64.whl" , hash = "sha256:53194af30d5bad77fcba80e23a1441c71abfb3e01192034f8246e0d8f99528f3" } ,
{ file = "coverage-5.5-cp37-cp37m-win32.whl" , hash = "sha256:184a47bbe0aa6400ed2d41d8e9ed868b8205046518c52464fde713ea06e3a74a" } ,
{ file = "coverage-5.5-cp37-cp37m-win_amd64.whl" , hash = "sha256:2949cad1c5208b8298d5686d5a85b66aae46d73eec2c3e08c817dd3513e5848a" } ,
{ file = "coverage-5.5-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:217658ec7187497e3f3ebd901afdca1af062b42cfe3e0dafea4cced3983739f6" } ,
{ file = "coverage-5.5-cp38-cp38-manylinux1_i686.whl" , hash = "sha256:1aa846f56c3d49205c952d8318e76ccc2ae23303351d9270ab220004c580cfe2" } ,
{ file = "coverage-5.5-cp38-cp38-manylinux1_x86_64.whl" , hash = "sha256:24d4a7de75446be83244eabbff746d66b9240ae020ced65d060815fac3423759" } ,
{ file = "coverage-5.5-cp38-cp38-manylinux2010_i686.whl" , hash = "sha256:d1f8bf7b90ba55699b3a5e44930e93ff0189aa27186e96071fac7dd0d06a1873" } ,
{ file = "coverage-5.5-cp38-cp38-manylinux2010_x86_64.whl" , hash = "sha256:970284a88b99673ccb2e4e334cfb38a10aab7cd44f7457564d11898a74b62d0a" } ,
{ file = "coverage-5.5-cp38-cp38-win32.whl" , hash = "sha256:01d84219b5cdbfc8122223b39a954820929497a1cb1422824bb86b07b74594b6" } ,
{ file = "coverage-5.5-cp38-cp38-win_amd64.whl" , hash = "sha256:2e0d881ad471768bf6e6c2bf905d183543f10098e3b3640fc029509530091502" } ,
{ file = "coverage-5.5-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:d1f9ce122f83b2305592c11d64f181b87153fc2c2bbd3bb4a3dde8303cfb1a6b" } ,
{ file = "coverage-5.5-cp39-cp39-manylinux1_i686.whl" , hash = "sha256:13c4ee887eca0f4c5a247b75398d4114c37882658300e153113dafb1d76de529" } ,
{ file = "coverage-5.5-cp39-cp39-manylinux1_x86_64.whl" , hash = "sha256:52596d3d0e8bdf3af43db3e9ba8dcdaac724ba7b5ca3f6358529d56f7a166f8b" } ,
{ file = "coverage-5.5-cp39-cp39-manylinux2010_i686.whl" , hash = "sha256:2cafbbb3af0733db200c9b5f798d18953b1a304d3f86a938367de1567f4b5bff" } ,
{ file = "coverage-5.5-cp39-cp39-manylinux2010_x86_64.whl" , hash = "sha256:44d654437b8ddd9eee7d1eaee28b7219bec228520ff809af170488fd2fed3e2b" } ,
{ file = "coverage-5.5-cp39-cp39-win32.whl" , hash = "sha256:d314ed732c25d29775e84a960c3c60808b682c08d86602ec2c3008e1202e3bb6" } ,
{ file = "coverage-5.5-cp39-cp39-win_amd64.whl" , hash = "sha256:13034c4409db851670bc9acd836243aeee299949bd5673e11844befcb0149f03" } ,
{ file = "coverage-5.5-pp36-none-any.whl" , hash = "sha256:f030f8873312a16414c0d8e1a1ddff2d3235655a2174e3648b4fa66b3f2f1079" } ,
{ file = "coverage-5.5-pp37-none-any.whl" , hash = "sha256:2a3859cb82dcbda1cfd3e6f71c27081d18aa251d20a17d87d26d4cd216fb0af4" } ,
{ file = "coverage-5.5.tar.gz" , hash = "sha256:ebe78fe9a0e874362175b02371bdfbee64d8edc42a044253ddf4ee7d3c15212c" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
crashtest = [
{ file = "crashtest-0.3.1-py3-none-any.whl" , hash = "sha256:300f4b0825f57688b47b6d70c6a31de33512eb2fa1ac614f780939aa0cf91680" } ,
{ file = "crashtest-0.3.1.tar.gz" , hash = "sha256:42ca7b6ce88b6c7433e2ce47ea884e91ec93104a4b754998be498a8e6c3d37dd" } ,
]
cryptography = [
2021-05-02 22:12:04 +00:00
{ file = "cryptography-3.4.7-cp36-abi3-macosx_10_10_x86_64.whl" , hash = "sha256:3d8427734c781ea5f1b41d6589c293089704d4759e34597dce91014ac125aad1" } ,
{ file = "cryptography-3.4.7-cp36-abi3-macosx_11_0_arm64.whl" , hash = "sha256:8e56e16617872b0957d1c9742a3f94b43533447fd78321514abbe7db216aa250" } ,
{ file = "cryptography-3.4.7-cp36-abi3-manylinux2010_x86_64.whl" , hash = "sha256:37340614f8a5d2fb9aeea67fd159bfe4f5f4ed535b1090ce8ec428b2f15a11f2" } ,
{ file = "cryptography-3.4.7-cp36-abi3-manylinux2014_aarch64.whl" , hash = "sha256:240f5c21aef0b73f40bb9f78d2caff73186700bf1bc6b94285699aff98cc16c6" } ,
{ file = "cryptography-3.4.7-cp36-abi3-manylinux2014_x86_64.whl" , hash = "sha256:1e056c28420c072c5e3cb36e2b23ee55e260cb04eee08f702e0edfec3fb51959" } ,
{ file = "cryptography-3.4.7-cp36-abi3-win32.whl" , hash = "sha256:0f1212a66329c80d68aeeb39b8a16d54ef57071bf22ff4e521657b27372e327d" } ,
{ file = "cryptography-3.4.7-cp36-abi3-win_amd64.whl" , hash = "sha256:de4e5f7f68220d92b7637fc99847475b59154b7a1b3868fb7385337af54ac9ca" } ,
{ file = "cryptography-3.4.7-pp36-pypy36_pp73-manylinux2010_x86_64.whl" , hash = "sha256:26965837447f9c82f1855e0bc8bc4fb910240b6e0d16a664bb722df3b5b06873" } ,
{ file = "cryptography-3.4.7-pp36-pypy36_pp73-manylinux2014_x86_64.whl" , hash = "sha256:eb8cc2afe8b05acbd84a43905832ec78e7b3873fb124ca190f574dca7389a87d" } ,
{ file = "cryptography-3.4.7-pp37-pypy37_pp73-manylinux2010_x86_64.whl" , hash = "sha256:7ec5d3b029f5fa2b179325908b9cd93db28ab7b85bb6c1db56b10e0b54235177" } ,
{ file = "cryptography-3.4.7-pp37-pypy37_pp73-manylinux2014_x86_64.whl" , hash = "sha256:ee77aa129f481be46f8d92a1a7db57269a2f23052d5f2433b4621bb457081cc9" } ,
{ file = "cryptography-3.4.7.tar.gz" , hash = "sha256:3d10de8116d25649631977cb37da6cbdd2d6fa0e0281d014a5b7d337255ca713" } ,
2020-12-22 02:52:07 +00:00
]
2020-09-16 07:41:53 +00:00
decorator = [
2021-05-02 22:12:04 +00:00
{ file = "decorator-5.0.7-py3-none-any.whl" , hash = "sha256:945d84890bb20cc4a2f4a31fc4311c0c473af65ea318617f13a7257c9a58bc98" } ,
{ file = "decorator-5.0.7.tar.gz" , hash = "sha256:6f201a6c4dac3d187352661f508b9364ec8091217442c9478f1f83c003a0f060" } ,
2020-09-16 07:41:53 +00:00
]
distlib = [
{ file = "distlib-0.3.1-py2.py3-none-any.whl" , hash = "sha256:8c09de2c67b3e7deef7184574fc060ab8a793e7adbb183d942c389c8b13c52fb" } ,
{ file = "distlib-0.3.1.zip" , hash = "sha256:edf6116872c863e1aa9d5bb7cb5e05a022c519a4594dc703843343a9ddd9bff1" } ,
]
docutils = [
{ file = "docutils-0.16-py2.py3-none-any.whl" , hash = "sha256:0c5b78adfbf7762415433f5515cd5c9e762339e23369dbe8000d84a4bf4ab3af" } ,
{ file = "docutils-0.16.tar.gz" , hash = "sha256:c2de3a60e9e7d07be26b7f2b00ca0309c207e06c100f9cc2a94931fc75a478fc" } ,
]
dparse = [
{ file = "dparse-0.5.1-py3-none-any.whl" , hash = "sha256:e953a25e44ebb60a5c6efc2add4420c177f1d8404509da88da9729202f306994" } ,
{ file = "dparse-0.5.1.tar.gz" , hash = "sha256:a1b5f169102e1c894f9a7d5ccf6f9402a836a5d24be80a986c7ce9eaed78f367" } ,
]
filelock = [
{ file = "filelock-3.0.12-py3-none-any.whl" , hash = "sha256:929b7d63ec5b7d6b71b0fa5ac14e030b3f70b75747cef1b10da9b879fef15836" } ,
{ file = "filelock-3.0.12.tar.gz" , hash = "sha256:18d82244ee114f543149c66a6e0c14e9c4f8a1044b5cdaadd0f82159d6a6ff59" } ,
]
2020-09-18 02:22:48 +00:00
flask = [
{ file = "Flask-1.1.2-py2.py3-none-any.whl" , hash = "sha256:8a4fdd8936eba2512e9c85df320a37e694c93945b33ef33c89946a340a238557" } ,
{ file = "Flask-1.1.2.tar.gz" , hash = "sha256:4efa1ae2d7c9865af48986de8aeb8504bf32c7f3d6fdc9353d34b21f4b127060" } ,
]
flask-restful = [
{ file = "Flask-RESTful-0.3.8.tar.gz" , hash = "sha256:5ea9a5991abf2cb69b4aac19793faac6c032300505b325687d7c305ffaa76915" } ,
{ file = "Flask_RESTful-0.3.8-py2.py3-none-any.whl" , hash = "sha256:d891118b951921f1cec80cabb4db98ea6058a35e6404788f9e70d5b243813ec2" } ,
]
2020-09-16 07:41:53 +00:00
gitdb = [
2021-05-02 22:12:04 +00:00
{ file = "gitdb-4.0.7-py3-none-any.whl" , hash = "sha256:6c4cc71933456991da20917998acbe6cf4fb41eeaab7d6d67fbc05ecd4c865b0" } ,
{ file = "gitdb-4.0.7.tar.gz" , hash = "sha256:96bf5c08b157a666fec41129e6d327235284cca4c81e92109260f353ba138005" } ,
2020-09-16 07:41:53 +00:00
]
gitpython = [
2021-05-02 22:12:04 +00:00
{ file = "GitPython-3.1.15-py3-none-any.whl" , hash = "sha256:a77824e516d3298b04fb36ec7845e92747df8fcfee9cacc32dd6239f9652f867" } ,
{ file = "GitPython-3.1.15.tar.gz" , hash = "sha256:05af150f47a5cca3f4b0af289b73aef8cf3c4fe2385015b06220cbcdee48bb6e" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
html5lib = [
{ file = "html5lib-1.1-py2.py3-none-any.whl" , hash = "sha256:0d78f8fde1c230e99fe37986a60526d7049ed4bf8a9fadbad5f00e22e58e041d" } ,
{ file = "html5lib-1.1.tar.gz" , hash = "sha256:b2e5b40261e20f354d198eae92afc10d750afb487ed5e50f9c4eaf07c184146f" } ,
]
2020-09-16 07:41:53 +00:00
identify = [
2021-05-02 22:12:04 +00:00
{ file = "identify-2.2.4-py2.py3-none-any.whl" , hash = "sha256:ad9f3fa0c2316618dc4d840f627d474ab6de106392a4f00221820200f490f5a8" } ,
{ file = "identify-2.2.4.tar.gz" , hash = "sha256:9bcc312d4e2fa96c7abebcdfb1119563b511b5e3985ac52f60d9116277865b2e" } ,
2020-09-16 07:41:53 +00:00
]
idna = [
{ file = "idna-2.10-py2.py3-none-any.whl" , hash = "sha256:b97d804b1e9b523befed77c48dacec60e6dcb0b5391d57af6a65a312a90648c0" } ,
{ file = "idna-2.10.tar.gz" , hash = "sha256:b307872f855b18632ce0c21c5e45be78c0ea7ae4c15c828c20788b26921eb3f6" } ,
]
imagesize = [
{ file = "imagesize-1.2.0-py2.py3-none-any.whl" , hash = "sha256:6965f19a6a2039c7d48bca7dba2473069ff854c36ae6f19d2cde309d998228a1" } ,
{ file = "imagesize-1.2.0.tar.gz" , hash = "sha256:b1f6b5a4eab1f73479a50fb79fcf729514a900c341d8503d62a62dbc4127a2b1" } ,
]
importlib-metadata = [
2020-12-22 02:52:07 +00:00
{ file = "importlib_metadata-1.7.0-py2.py3-none-any.whl" , hash = "sha256:dc15b2969b4ce36305c51eebe62d418ac7791e9a157911d58bfb1f9ccd8e2070" } ,
{ file = "importlib_metadata-1.7.0.tar.gz" , hash = "sha256:90bb658cdbbf6d1735b6341ce708fc7024a3e14e99ffdc5783edea9f9b077f83" } ,
2020-09-16 07:41:53 +00:00
]
ipython = [
2021-05-05 17:48:02 +00:00
{ file = "ipython-7.23.1-py3-none-any.whl" , hash = "sha256:f78c6a3972dde1cc9e4041cbf4de583546314ba52d3c97208e5b6b2221a9cb7d" } ,
{ file = "ipython-7.23.1.tar.gz" , hash = "sha256:714810a5c74f512b69d5f3b944c86e592cee0a5fb9c728e582f074610f6cf038" } ,
2020-09-16 07:41:53 +00:00
]
ipython-genutils = [
{ file = "ipython_genutils-0.2.0-py2.py3-none-any.whl" , hash = "sha256:72dd37233799e619666c9f639a9da83c34013a73e8bbc79a7a6348d93c61fab8" } ,
{ file = "ipython_genutils-0.2.0.tar.gz" , hash = "sha256:eb2e116e75ecef9d4d228fdc66af54269afa26ab4463042e33785b887c628ba8" } ,
]
isort = [
2021-05-02 22:12:04 +00:00
{ file = "isort-5.8.0-py3-none-any.whl" , hash = "sha256:2bb1680aad211e3c9944dbce1d4ba09a989f04e238296c87fe2139faa26d655d" } ,
{ file = "isort-5.8.0.tar.gz" , hash = "sha256:0a943902919f65c5684ac4e0154b1ad4fac6dcaa5d9f3426b732f1c8b5419be6" } ,
2020-09-16 07:41:53 +00:00
]
2020-09-18 02:22:48 +00:00
itsdangerous = [
{ file = "itsdangerous-1.1.0-py2.py3-none-any.whl" , hash = "sha256:b12271b2047cb23eeb98c8b5622e2e5c5e9abd9784a153e9d8ef9cb4dd09d749" } ,
{ file = "itsdangerous-1.1.0.tar.gz" , hash = "sha256:321b033d07f2a4136d3ec762eac9f16a10ccd60f53c0c91af90217ace7ba1f19" } ,
]
2020-09-16 07:41:53 +00:00
jedi = [
2021-05-02 22:12:04 +00:00
{ file = "jedi-0.18.0-py2.py3-none-any.whl" , hash = "sha256:18456d83f65f400ab0c2d3319e48520420ef43b23a086fdc05dff34132f0fb93" } ,
{ file = "jedi-0.18.0.tar.gz" , hash = "sha256:92550a404bad8afed881a137ec9a461fed49eca661414be45059329614ed0707" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
jeepney = [
{ file = "jeepney-0.6.0-py3-none-any.whl" , hash = "sha256:aec56c0eb1691a841795111e184e13cad504f7703b9a64f63020816afa79a8ae" } ,
{ file = "jeepney-0.6.0.tar.gz" , hash = "sha256:7d59b6622675ca9e993a6bd38de845051d315f8b0c72cca3aef733a20b648657" } ,
]
2020-09-16 07:41:53 +00:00
jinja2 = [
2021-05-02 22:12:04 +00:00
{ file = "Jinja2-2.11.3-py2.py3-none-any.whl" , hash = "sha256:03e47ad063331dd6a3f04a43eddca8a966a26ba0c5b7207a9a9e4e08f1b29419" } ,
{ file = "Jinja2-2.11.3.tar.gz" , hash = "sha256:a6d58433de0ae800347cab1fa3043cebbabe8baa9d29e668f1c768cb87a333c6" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
keyring = [
2021-05-02 22:12:04 +00:00
{ file = "keyring-21.8.0-py3-none-any.whl" , hash = "sha256:4be9cbaaaf83e61d6399f733d113ede7d1c73bc75cb6aeb64eee0f6ac39b30ea" } ,
{ file = "keyring-21.8.0.tar.gz" , hash = "sha256:1746d3ac913d449a090caf11e9e4af00e26c3f7f7e81027872192b2398b98675" } ,
2020-12-22 02:52:07 +00:00
]
2020-09-16 07:41:53 +00:00
lazy-object-proxy = [
2021-05-02 22:12:04 +00:00
{ file = "lazy-object-proxy-1.6.0.tar.gz" , hash = "sha256:489000d368377571c6f982fba6497f2aa13c6d1facc40660963da62f5c379726" } ,
{ file = "lazy_object_proxy-1.6.0-cp27-cp27m-macosx_10_14_x86_64.whl" , hash = "sha256:c6938967f8528b3668622a9ed3b31d145fab161a32f5891ea7b84f6b790be05b" } ,
{ file = "lazy_object_proxy-1.6.0-cp27-cp27m-win32.whl" , hash = "sha256:ebfd274dcd5133e0afae738e6d9da4323c3eb021b3e13052d8cbd0e457b1256e" } ,
{ file = "lazy_object_proxy-1.6.0-cp27-cp27m-win_amd64.whl" , hash = "sha256:ed361bb83436f117f9917d282a456f9e5009ea12fd6de8742d1a4752c3017e93" } ,
{ file = "lazy_object_proxy-1.6.0-cp27-cp27mu-manylinux1_x86_64.whl" , hash = "sha256:d900d949b707778696fdf01036f58c9876a0d8bfe116e8d220cfd4b15f14e741" } ,
{ file = "lazy_object_proxy-1.6.0-cp36-cp36m-manylinux1_x86_64.whl" , hash = "sha256:5743a5ab42ae40caa8421b320ebf3a998f89c85cdc8376d6b2e00bd12bd1b587" } ,
{ file = "lazy_object_proxy-1.6.0-cp36-cp36m-manylinux2014_aarch64.whl" , hash = "sha256:bf34e368e8dd976423396555078def5cfc3039ebc6fc06d1ae2c5a65eebbcde4" } ,
{ file = "lazy_object_proxy-1.6.0-cp36-cp36m-win32.whl" , hash = "sha256:b579f8acbf2bdd9ea200b1d5dea36abd93cabf56cf626ab9c744a432e15c815f" } ,
{ file = "lazy_object_proxy-1.6.0-cp36-cp36m-win_amd64.whl" , hash = "sha256:4f60460e9f1eb632584c9685bccea152f4ac2130e299784dbaf9fae9f49891b3" } ,
{ file = "lazy_object_proxy-1.6.0-cp37-cp37m-manylinux1_x86_64.whl" , hash = "sha256:d7124f52f3bd259f510651450e18e0fd081ed82f3c08541dffc7b94b883aa981" } ,
{ file = "lazy_object_proxy-1.6.0-cp37-cp37m-manylinux2014_aarch64.whl" , hash = "sha256:22ddd618cefe54305df49e4c069fa65715be4ad0e78e8d252a33debf00f6ede2" } ,
{ file = "lazy_object_proxy-1.6.0-cp37-cp37m-win32.whl" , hash = "sha256:9d397bf41caad3f489e10774667310d73cb9c4258e9aed94b9ec734b34b495fd" } ,
{ file = "lazy_object_proxy-1.6.0-cp37-cp37m-win_amd64.whl" , hash = "sha256:24a5045889cc2729033b3e604d496c2b6f588c754f7a62027ad4437a7ecc4837" } ,
{ file = "lazy_object_proxy-1.6.0-cp38-cp38-manylinux1_x86_64.whl" , hash = "sha256:17e0967ba374fc24141738c69736da90e94419338fd4c7c7bef01ee26b339653" } ,
{ file = "lazy_object_proxy-1.6.0-cp38-cp38-manylinux2014_aarch64.whl" , hash = "sha256:410283732af311b51b837894fa2f24f2c0039aa7f220135192b38fcc42bd43d3" } ,
{ file = "lazy_object_proxy-1.6.0-cp38-cp38-win32.whl" , hash = "sha256:85fb7608121fd5621cc4377a8961d0b32ccf84a7285b4f1d21988b2eae2868e8" } ,
{ file = "lazy_object_proxy-1.6.0-cp38-cp38-win_amd64.whl" , hash = "sha256:d1c2676e3d840852a2de7c7d5d76407c772927addff8d742b9808fe0afccebdf" } ,
{ file = "lazy_object_proxy-1.6.0-cp39-cp39-macosx_10_14_x86_64.whl" , hash = "sha256:b865b01a2e7f96db0c5d12cfea590f98d8c5ba64ad222300d93ce6ff9138bcad" } ,
{ file = "lazy_object_proxy-1.6.0-cp39-cp39-manylinux1_x86_64.whl" , hash = "sha256:4732c765372bd78a2d6b2150a6e99d00a78ec963375f236979c0626b97ed8e43" } ,
{ file = "lazy_object_proxy-1.6.0-cp39-cp39-manylinux2014_aarch64.whl" , hash = "sha256:9698110e36e2df951c7c36b6729e96429c9c32b3331989ef19976592c5f3c77a" } ,
{ file = "lazy_object_proxy-1.6.0-cp39-cp39-win32.whl" , hash = "sha256:1fee665d2638491f4d6e55bd483e15ef21f6c8c2095f235fef72601021e64f61" } ,
{ file = "lazy_object_proxy-1.6.0-cp39-cp39-win_amd64.whl" , hash = "sha256:f5144c75445ae3ca2057faac03fda5a902eff196702b0a24daf1d6ce0650514b" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
lockfile = [
{ file = "lockfile-0.12.2-py2.py3-none-any.whl" , hash = "sha256:6c3cb24f344923d30b2785d5ad75182c8ea7ac1b6171b08657258ec7429d50fa" } ,
{ file = "lockfile-0.12.2.tar.gz" , hash = "sha256:6aed02de03cba24efabcd600b30540140634fc06cfa603822d508d5361e9f799" } ,
]
2021-05-02 22:12:04 +00:00
markdown-it-py = [
{ file = "markdown-it-py-0.6.2.tar.gz" , hash = "sha256:c3b9f995be0792cbbc8ab2f53d74072eb7ff8a8b622be8d61d38ab879709eca3" } ,
{ file = "markdown_it_py-0.6.2-py3-none-any.whl" , hash = "sha256:30b3e9f8198dc82a5df0dcb73fd31d56cd9a43bf8a747feb10b2ba74f962bcb1" } ,
]
2020-09-16 07:41:53 +00:00
markupsafe = [
{ file = "MarkupSafe-1.1.1-cp27-cp27m-macosx_10_6_intel.whl" , hash = "sha256:09027a7803a62ca78792ad89403b1b7a73a01c8cb65909cd876f7fcebd79b161" } ,
{ file = "MarkupSafe-1.1.1-cp27-cp27m-manylinux1_i686.whl" , hash = "sha256:e249096428b3ae81b08327a63a485ad0878de3fb939049038579ac0ef61e17e7" } ,
{ file = "MarkupSafe-1.1.1-cp27-cp27m-manylinux1_x86_64.whl" , hash = "sha256:500d4957e52ddc3351cabf489e79c91c17f6e0899158447047588650b5e69183" } ,
{ file = "MarkupSafe-1.1.1-cp27-cp27m-win32.whl" , hash = "sha256:b2051432115498d3562c084a49bba65d97cf251f5a331c64a12ee7e04dacc51b" } ,
{ file = "MarkupSafe-1.1.1-cp27-cp27m-win_amd64.whl" , hash = "sha256:98c7086708b163d425c67c7a91bad6e466bb99d797aa64f965e9d25c12111a5e" } ,
{ file = "MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_i686.whl" , hash = "sha256:cd5df75523866410809ca100dc9681e301e3c27567cf498077e8551b6d20e42f" } ,
{ file = "MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_x86_64.whl" , hash = "sha256:43a55c2930bbc139570ac2452adf3d70cdbb3cfe5912c71cdce1c2c6bbd9c5d1" } ,
{ file = "MarkupSafe-1.1.1-cp34-cp34m-macosx_10_6_intel.whl" , hash = "sha256:1027c282dad077d0bae18be6794e6b6b8c91d58ed8a8d89a89d59693b9131db5" } ,
{ file = "MarkupSafe-1.1.1-cp34-cp34m-manylinux1_i686.whl" , hash = "sha256:62fe6c95e3ec8a7fad637b7f3d372c15ec1caa01ab47926cfdf7a75b40e0eac1" } ,
{ file = "MarkupSafe-1.1.1-cp34-cp34m-manylinux1_x86_64.whl" , hash = "sha256:88e5fcfb52ee7b911e8bb6d6aa2fd21fbecc674eadd44118a9cc3863f938e735" } ,
{ file = "MarkupSafe-1.1.1-cp34-cp34m-win32.whl" , hash = "sha256:ade5e387d2ad0d7ebf59146cc00c8044acbd863725f887353a10df825fc8ae21" } ,
{ file = "MarkupSafe-1.1.1-cp34-cp34m-win_amd64.whl" , hash = "sha256:09c4b7f37d6c648cb13f9230d847adf22f8171b1ccc4d5682398e77f40309235" } ,
{ file = "MarkupSafe-1.1.1-cp35-cp35m-macosx_10_6_intel.whl" , hash = "sha256:79855e1c5b8da654cf486b830bd42c06e8780cea587384cf6545b7d9ac013a0b" } ,
{ file = "MarkupSafe-1.1.1-cp35-cp35m-manylinux1_i686.whl" , hash = "sha256:c8716a48d94b06bb3b2524c2b77e055fb313aeb4ea620c8dd03a105574ba704f" } ,
{ file = "MarkupSafe-1.1.1-cp35-cp35m-manylinux1_x86_64.whl" , hash = "sha256:7c1699dfe0cf8ff607dbdcc1e9b9af1755371f92a68f706051cc8c37d447c905" } ,
{ file = "MarkupSafe-1.1.1-cp35-cp35m-win32.whl" , hash = "sha256:6dd73240d2af64df90aa7c4e7481e23825ea70af4b4922f8ede5b9e35f78a3b1" } ,
{ file = "MarkupSafe-1.1.1-cp35-cp35m-win_amd64.whl" , hash = "sha256:9add70b36c5666a2ed02b43b335fe19002ee5235efd4b8a89bfcf9005bebac0d" } ,
{ file = "MarkupSafe-1.1.1-cp36-cp36m-macosx_10_6_intel.whl" , hash = "sha256:24982cc2533820871eba85ba648cd53d8623687ff11cbb805be4ff7b4c971aff" } ,
2021-05-02 22:12:04 +00:00
{ file = "MarkupSafe-1.1.1-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:d53bc011414228441014aa71dbec320c66468c1030aae3a6e29778a3382d96e5" } ,
2020-09-16 07:41:53 +00:00
{ file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux1_i686.whl" , hash = "sha256:00bc623926325b26bb9605ae9eae8a215691f33cae5df11ca5424f06f2d1f473" } ,
{ file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl" , hash = "sha256:717ba8fe3ae9cc0006d7c451f0bb265ee07739daf76355d06366154ee68d221e" } ,
2021-05-02 22:12:04 +00:00
{ file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_i686.whl" , hash = "sha256:3b8a6499709d29c2e2399569d96719a1b21dcd94410a586a18526b143ec8470f" } ,
{ file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_x86_64.whl" , hash = "sha256:84dee80c15f1b560d55bcfe6d47b27d070b4681c699c572af2e3c7cc90a3b8e0" } ,
{ file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux2014_aarch64.whl" , hash = "sha256:b1dba4527182c95a0db8b6060cc98ac49b9e2f5e64320e2b56e47cb2831978c7" } ,
2020-09-16 07:41:53 +00:00
{ file = "MarkupSafe-1.1.1-cp36-cp36m-win32.whl" , hash = "sha256:535f6fc4d397c1563d08b88e485c3496cf5784e927af890fb3c3aac7f933ec66" } ,
{ file = "MarkupSafe-1.1.1-cp36-cp36m-win_amd64.whl" , hash = "sha256:b1282f8c00509d99fef04d8ba936b156d419be841854fe901d8ae224c59f0be5" } ,
{ file = "MarkupSafe-1.1.1-cp37-cp37m-macosx_10_6_intel.whl" , hash = "sha256:8defac2f2ccd6805ebf65f5eeb132adcf2ab57aa11fdf4c0dd5169a004710e7d" } ,
2021-05-02 22:12:04 +00:00
{ file = "MarkupSafe-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:bf5aa3cbcfdf57fa2ee9cd1822c862ef23037f5c832ad09cfea57fa846dec193" } ,
2020-09-16 07:41:53 +00:00
{ file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux1_i686.whl" , hash = "sha256:46c99d2de99945ec5cb54f23c8cd5689f6d7177305ebff350a58ce5f8de1669e" } ,
{ file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux1_x86_64.whl" , hash = "sha256:ba59edeaa2fc6114428f1637ffff42da1e311e29382d81b339c1817d37ec93c6" } ,
2021-05-02 22:12:04 +00:00
{ file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_i686.whl" , hash = "sha256:6fffc775d90dcc9aed1b89219549b329a9250d918fd0b8fa8d93d154918422e1" } ,
{ file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_x86_64.whl" , hash = "sha256:a6a744282b7718a2a62d2ed9d993cad6f5f585605ad352c11de459f4108df0a1" } ,
{ file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux2014_aarch64.whl" , hash = "sha256:195d7d2c4fbb0ee8139a6cf67194f3973a6b3042d742ebe0a9ed36d8b6f0c07f" } ,
2020-09-16 07:41:53 +00:00
{ file = "MarkupSafe-1.1.1-cp37-cp37m-win32.whl" , hash = "sha256:b00c1de48212e4cc9603895652c5c410df699856a2853135b3967591e4beebc2" } ,
{ file = "MarkupSafe-1.1.1-cp37-cp37m-win_amd64.whl" , hash = "sha256:9bf40443012702a1d2070043cb6291650a0841ece432556f784f004937f0f32c" } ,
{ file = "MarkupSafe-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:6788b695d50a51edb699cb55e35487e430fa21f1ed838122d722e0ff0ac5ba15" } ,
{ file = "MarkupSafe-1.1.1-cp38-cp38-manylinux1_i686.whl" , hash = "sha256:cdb132fc825c38e1aeec2c8aa9338310d29d337bebbd7baa06889d09a60a1fa2" } ,
{ file = "MarkupSafe-1.1.1-cp38-cp38-manylinux1_x86_64.whl" , hash = "sha256:13d3144e1e340870b25e7b10b98d779608c02016d5184cfb9927a9f10c689f42" } ,
2021-05-02 22:12:04 +00:00
{ file = "MarkupSafe-1.1.1-cp38-cp38-manylinux2010_i686.whl" , hash = "sha256:acf08ac40292838b3cbbb06cfe9b2cb9ec78fce8baca31ddb87aaac2e2dc3bc2" } ,
{ file = "MarkupSafe-1.1.1-cp38-cp38-manylinux2010_x86_64.whl" , hash = "sha256:d9be0ba6c527163cbed5e0857c451fcd092ce83947944d6c14bc95441203f032" } ,
{ file = "MarkupSafe-1.1.1-cp38-cp38-manylinux2014_aarch64.whl" , hash = "sha256:caabedc8323f1e93231b52fc32bdcde6db817623d33e100708d9a68e1f53b26b" } ,
2020-09-16 07:41:53 +00:00
{ file = "MarkupSafe-1.1.1-cp38-cp38-win32.whl" , hash = "sha256:596510de112c685489095da617b5bcbbac7dd6384aeebeda4df6025d0256a81b" } ,
{ file = "MarkupSafe-1.1.1-cp38-cp38-win_amd64.whl" , hash = "sha256:e8313f01ba26fbbe36c7be1966a7b7424942f670f38e666995b88d012765b9be" } ,
2021-05-02 22:12:04 +00:00
{ file = "MarkupSafe-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:d73a845f227b0bfe8a7455ee623525ee656a9e2e749e4742706d80a6065d5e2c" } ,
{ file = "MarkupSafe-1.1.1-cp39-cp39-manylinux1_i686.whl" , hash = "sha256:98bae9582248d6cf62321dcb52aaf5d9adf0bad3b40582925ef7c7f0ed85fceb" } ,
{ file = "MarkupSafe-1.1.1-cp39-cp39-manylinux1_x86_64.whl" , hash = "sha256:2beec1e0de6924ea551859edb9e7679da6e4870d32cb766240ce17e0a0ba2014" } ,
{ file = "MarkupSafe-1.1.1-cp39-cp39-manylinux2010_i686.whl" , hash = "sha256:7fed13866cf14bba33e7176717346713881f56d9d2bcebab207f7a036f41b850" } ,
{ file = "MarkupSafe-1.1.1-cp39-cp39-manylinux2010_x86_64.whl" , hash = "sha256:6f1e273a344928347c1290119b493a1f0303c52f5a5eae5f16d74f48c15d4a85" } ,
{ file = "MarkupSafe-1.1.1-cp39-cp39-manylinux2014_aarch64.whl" , hash = "sha256:feb7b34d6325451ef96bc0e36e1a6c0c1c64bc1fbec4b854f4529e51887b1621" } ,
{ file = "MarkupSafe-1.1.1-cp39-cp39-win32.whl" , hash = "sha256:22c178a091fc6630d0d045bdb5992d2dfe14e3259760e713c490da5323866c39" } ,
{ file = "MarkupSafe-1.1.1-cp39-cp39-win_amd64.whl" , hash = "sha256:b7d644ddb4dbd407d31ffb699f1d140bc35478da613b441c582aeb7c43838dd8" } ,
2020-09-16 07:41:53 +00:00
{ file = "MarkupSafe-1.1.1.tar.gz" , hash = "sha256:29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b" } ,
]
2021-05-02 22:12:04 +00:00
matplotlib-inline = [
{ file = "matplotlib-inline-0.1.2.tar.gz" , hash = "sha256:f41d5ff73c9f5385775d5c0bc13b424535c8402fe70ea8210f93e11f3683993e" } ,
{ file = "matplotlib_inline-0.1.2-py3-none-any.whl" , hash = "sha256:5cf1176f554abb4fa98cb362aa2b55c500147e4bdbb07e3fda359143e1da0811" } ,
]
2020-09-16 07:41:53 +00:00
mccabe = [
{ file = "mccabe-0.6.1-py2.py3-none-any.whl" , hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42" } ,
{ file = "mccabe-0.6.1.tar.gz" , hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f" } ,
]
2021-05-02 22:12:04 +00:00
mdformat = [
{ file = "mdformat-0.6.4-py3-none-any.whl" , hash = "sha256:857b5030bb7732eed181a957ac78c0667138f105d11103e55f723221e9131ad4" } ,
{ file = "mdformat-0.6.4.tar.gz" , hash = "sha256:4f89cd5c6e43e664552bbc1e826bb5c42a13d0ce21e4e1c6415b5b1d1ac7fbd8" } ,
]
mdformat-gfm = [
{ file = "mdformat-gfm-0.2.0.tar.gz" , hash = "sha256:0242ff945968454f4c97a531ebc80fa164c4459385c75b5e9614f96c72a1d8df" } ,
{ file = "mdformat_gfm-0.2.0-py3-none-any.whl" , hash = "sha256:b6f1381389f056170be438dc3192a5406b6a2efe5ba0886edb7a297ce4d2e2f0" } ,
]
mdformat-tables = [
{ file = "mdformat_tables-0.3.0-py3-none-any.whl" , hash = "sha256:cce24ca56a2a860f15475084b159bf71330480cb64afcf75a0f7411d62aeeaa9" } ,
{ file = "mdformat_tables-0.3.0.tar.gz" , hash = "sha256:312feb8f0ac01f1d672c34fa22efb89469e11f9ba4849fbba8866a241eb0d442" } ,
]
mdit-py-plugins = [
{ file = "mdit-py-plugins-0.2.6.tar.gz" , hash = "sha256:1e467ca2ea056e8065cbd5d6c61e5052bb50826bde84c40f6a5ed77e82125710" } ,
{ file = "mdit_py_plugins-0.2.6-py3-none-any.whl" , hash = "sha256:77fd75dad81109ee91f30eb49146196f79afbbae041f298ae4886c8c2b5e23d7" } ,
]
2020-09-16 07:41:53 +00:00
more-itertools = [
2021-05-02 22:12:04 +00:00
{ file = "more-itertools-8.7.0.tar.gz" , hash = "sha256:c5d6da9ca3ff65220c3bfd2a8db06d698f05d4d2b9be57e1deb2be5a45019713" } ,
{ file = "more_itertools-8.7.0-py3-none-any.whl" , hash = "sha256:5652a9ac72209ed7df8d9c15daf4e1aa0e3d2ccd3c87f8265a0673cd9cbc9ced" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
msgpack = [
{ file = "msgpack-1.0.2-cp35-cp35m-manylinux1_i686.whl" , hash = "sha256:b6d9e2dae081aa35c44af9c4298de4ee72991305503442a5c74656d82b581fe9" } ,
{ file = "msgpack-1.0.2-cp35-cp35m-manylinux1_x86_64.whl" , hash = "sha256:a99b144475230982aee16b3d249170f1cccebf27fb0a08e9f603b69637a62192" } ,
{ file = "msgpack-1.0.2-cp35-cp35m-manylinux2014_aarch64.whl" , hash = "sha256:1026dcc10537d27dd2d26c327e552f05ce148977e9d7b9f1718748281b38c841" } ,
{ file = "msgpack-1.0.2-cp36-cp36m-macosx_10_14_x86_64.whl" , hash = "sha256:fe07bc6735d08e492a327f496b7850e98cb4d112c56df69b0c844dbebcbb47f6" } ,
{ file = "msgpack-1.0.2-cp36-cp36m-manylinux1_i686.whl" , hash = "sha256:9ea52fff0473f9f3000987f313310208c879493491ef3ccf66268eff8d5a0326" } ,
{ file = "msgpack-1.0.2-cp36-cp36m-manylinux1_x86_64.whl" , hash = "sha256:26a1759f1a88df5f1d0b393eb582ec022326994e311ba9c5818adc5374736439" } ,
{ file = "msgpack-1.0.2-cp36-cp36m-manylinux2014_aarch64.whl" , hash = "sha256:497d2c12426adcd27ab83144057a705efb6acc7e85957a51d43cdcf7f258900f" } ,
{ file = "msgpack-1.0.2-cp36-cp36m-win32.whl" , hash = "sha256:e89ec55871ed5473a041c0495b7b4e6099f6263438e0bd04ccd8418f92d5d7f2" } ,
{ file = "msgpack-1.0.2-cp36-cp36m-win_amd64.whl" , hash = "sha256:a4355d2193106c7aa77c98fc955252a737d8550320ecdb2e9ac701e15e2943bc" } ,
{ file = "msgpack-1.0.2-cp37-cp37m-macosx_10_14_x86_64.whl" , hash = "sha256:d6c64601af8f3893d17ec233237030e3110f11b8a962cb66720bf70c0141aa54" } ,
{ file = "msgpack-1.0.2-cp37-cp37m-manylinux1_i686.whl" , hash = "sha256:f484cd2dca68502de3704f056fa9b318c94b1539ed17a4c784266df5d6978c87" } ,
{ file = "msgpack-1.0.2-cp37-cp37m-manylinux1_x86_64.whl" , hash = "sha256:f3e6aaf217ac1c7ce1563cf52a2f4f5d5b1f64e8729d794165db71da57257f0c" } ,
{ file = "msgpack-1.0.2-cp37-cp37m-manylinux2014_aarch64.whl" , hash = "sha256:8521e5be9e3b93d4d5e07cb80b7e32353264d143c1f072309e1863174c6aadb1" } ,
{ file = "msgpack-1.0.2-cp37-cp37m-win32.whl" , hash = "sha256:31c17bbf2ae5e29e48d794c693b7ca7a0c73bd4280976d408c53df421e838d2a" } ,
{ file = "msgpack-1.0.2-cp37-cp37m-win_amd64.whl" , hash = "sha256:8ffb24a3b7518e843cd83538cf859e026d24ec41ac5721c18ed0c55101f9775b" } ,
{ file = "msgpack-1.0.2-cp38-cp38-macosx_10_14_x86_64.whl" , hash = "sha256:b28c0876cce1466d7c2195d7658cf50e4730667196e2f1355c4209444717ee06" } ,
{ file = "msgpack-1.0.2-cp38-cp38-manylinux1_i686.whl" , hash = "sha256:87869ba567fe371c4555d2e11e4948778ab6b59d6cc9d8460d543e4cfbbddd1c" } ,
{ file = "msgpack-1.0.2-cp38-cp38-manylinux1_x86_64.whl" , hash = "sha256:b55f7db883530b74c857e50e149126b91bb75d35c08b28db12dcb0346f15e46e" } ,
{ file = "msgpack-1.0.2-cp38-cp38-manylinux2014_aarch64.whl" , hash = "sha256:ac25f3e0513f6673e8b405c3a80500eb7be1cf8f57584be524c4fa78fe8e0c83" } ,
{ file = "msgpack-1.0.2-cp38-cp38-win32.whl" , hash = "sha256:0cb94ee48675a45d3b86e61d13c1e6f1696f0183f0715544976356ff86f741d9" } ,
{ file = "msgpack-1.0.2-cp38-cp38-win_amd64.whl" , hash = "sha256:e36a812ef4705a291cdb4a2fd352f013134f26c6ff63477f20235138d1d21009" } ,
{ file = "msgpack-1.0.2-cp39-cp39-macosx_10_14_x86_64.whl" , hash = "sha256:2a5866bdc88d77f6e1370f82f2371c9bc6fc92fe898fa2dec0c5d4f5435a2694" } ,
{ file = "msgpack-1.0.2-cp39-cp39-manylinux1_i686.whl" , hash = "sha256:92be4b12de4806d3c36810b0fe2aeedd8d493db39e2eb90742b9c09299eb5759" } ,
{ file = "msgpack-1.0.2-cp39-cp39-manylinux1_x86_64.whl" , hash = "sha256:de6bd7990a2c2dabe926b7e62a92886ccbf809425c347ae7de277067f97c2887" } ,
{ file = "msgpack-1.0.2-cp39-cp39-manylinux2014_aarch64.whl" , hash = "sha256:5a9ee2540c78659a1dd0b110f73773533ee3108d4e1219b5a15a8d635b7aca0e" } ,
{ file = "msgpack-1.0.2-cp39-cp39-win32.whl" , hash = "sha256:c747c0cc08bd6d72a586310bda6ea72eeb28e7505990f342552315b229a19b33" } ,
{ file = "msgpack-1.0.2-cp39-cp39-win_amd64.whl" , hash = "sha256:d8167b84af26654c1124857d71650404336f4eb5cc06900667a493fc619ddd9f" } ,
{ file = "msgpack-1.0.2.tar.gz" , hash = "sha256:fae04496f5bc150eefad4e9571d1a76c55d021325dcd484ce45065ebbdd00984" } ,
]
2020-09-16 07:41:53 +00:00
mypy = [
2021-05-02 22:12:04 +00:00
{ file = "mypy-0.800-cp35-cp35m-macosx_10_9_x86_64.whl" , hash = "sha256:e1c84c65ff6d69fb42958ece5b1255394714e0aac4df5ffe151bc4fe19c7600a" } ,
{ file = "mypy-0.800-cp35-cp35m-manylinux1_x86_64.whl" , hash = "sha256:947126195bfe4709c360e89b40114c6746ae248f04d379dca6f6ab677aa07641" } ,
{ file = "mypy-0.800-cp35-cp35m-manylinux2010_x86_64.whl" , hash = "sha256:b95068a3ce3b50332c40e31a955653be245666a4bc7819d3c8898aa9fb9ea496" } ,
{ file = "mypy-0.800-cp35-cp35m-win_amd64.whl" , hash = "sha256:ca7ad5aed210841f1e77f5f2f7d725b62c78fa77519312042c719ed2ab937876" } ,
{ file = "mypy-0.800-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:e32b7b282c4ed4e378bba8b8dfa08e1cfa6f6574067ef22f86bee5b1039de0c9" } ,
{ file = "mypy-0.800-cp36-cp36m-manylinux1_x86_64.whl" , hash = "sha256:e497a544391f733eca922fdcb326d19e894789cd4ff61d48b4b195776476c5cf" } ,
{ file = "mypy-0.800-cp36-cp36m-manylinux2010_x86_64.whl" , hash = "sha256:5615785d3e2f4f03ab7697983d82c4b98af5c321614f51b8f1034eb9ebe48363" } ,
{ file = "mypy-0.800-cp36-cp36m-win_amd64.whl" , hash = "sha256:2b216eacca0ec0ee124af9429bfd858d5619a0725ee5f88057e6e076f9eb1a7b" } ,
{ file = "mypy-0.800-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:e3b8432f8df19e3c11235c4563a7250666dc9aa7cdda58d21b4177b20256ca9f" } ,
{ file = "mypy-0.800-cp37-cp37m-manylinux1_x86_64.whl" , hash = "sha256:d16c54b0dffb861dc6318a8730952265876d90c5101085a4bc56913e8521ba19" } ,
{ file = "mypy-0.800-cp37-cp37m-manylinux2010_x86_64.whl" , hash = "sha256:0d2fc8beb99cd88f2d7e20d69131353053fbecea17904ee6f0348759302c52fa" } ,
{ file = "mypy-0.800-cp37-cp37m-win_amd64.whl" , hash = "sha256:aa9d4901f3ee1a986a3a79fe079ffbf7f999478c281376f48faa31daaa814e86" } ,
{ file = "mypy-0.800-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:319ee5c248a7c3f94477f92a729b7ab06bf8a6d04447ef3aa8c9ba2aa47c6dcf" } ,
{ file = "mypy-0.800-cp38-cp38-manylinux1_x86_64.whl" , hash = "sha256:74f5aa50d0866bc6fb8e213441c41e466c86678c800700b87b012ed11c0a13e0" } ,
{ file = "mypy-0.800-cp38-cp38-manylinux2010_x86_64.whl" , hash = "sha256:a301da58d566aca05f8f449403c710c50a9860782148332322decf73a603280b" } ,
{ file = "mypy-0.800-cp38-cp38-win_amd64.whl" , hash = "sha256:b9150db14a48a8fa114189bfe49baccdff89da8c6639c2717750c7ae62316738" } ,
{ file = "mypy-0.800-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:f5fdf935a46aa20aa937f2478480ebf4be9186e98e49cc3843af9a5795a49a25" } ,
{ file = "mypy-0.800-cp39-cp39-manylinux1_x86_64.whl" , hash = "sha256:6f8425fecd2ba6007e526209bb985ce7f49ed0d2ac1cc1a44f243380a06a84fb" } ,
{ file = "mypy-0.800-cp39-cp39-manylinux2010_x86_64.whl" , hash = "sha256:5ff616787122774f510caeb7b980542a7cc2222be3f00837a304ea85cd56e488" } ,
{ file = "mypy-0.800-cp39-cp39-win_amd64.whl" , hash = "sha256:90b6f46dc2181d74f80617deca611925d7e63007cf416397358aa42efb593e07" } ,
{ file = "mypy-0.800-py3-none-any.whl" , hash = "sha256:3e0c159a7853e3521e3f582adb1f3eac66d0b0639d434278e2867af3a8c62653" } ,
{ file = "mypy-0.800.tar.gz" , hash = "sha256:e0202e37756ed09daf4b0ba64ad2c245d357659e014c3f51d8cd0681ba66940a" } ,
2020-09-16 07:41:53 +00:00
]
mypy-extensions = [
{ file = "mypy_extensions-0.4.3-py2.py3-none-any.whl" , hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d" } ,
{ file = "mypy_extensions-0.4.3.tar.gz" , hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8" } ,
]
nodeenv = [
2021-05-02 22:12:04 +00:00
{ file = "nodeenv-1.6.0-py2.py3-none-any.whl" , hash = "sha256:621e6b7076565ddcacd2db0294c0381e01fd28945ab36bcf00f41c5daf63bef7" } ,
{ file = "nodeenv-1.6.0.tar.gz" , hash = "sha256:3ef13ff90291ba2a4a7a4ff9a979b63ffdd00a464dbe04acf0ea6471517a4c2b" } ,
2020-09-16 07:41:53 +00:00
]
packaging = [
2021-05-02 22:12:04 +00:00
{ file = "packaging-20.9-py2.py3-none-any.whl" , hash = "sha256:67714da7f7bc052e064859c05c595155bd1ee9f69f76557e21f051443c20947a" } ,
{ file = "packaging-20.9.tar.gz" , hash = "sha256:5b327ac1320dc863dca72f4514ecc086f31186744b84a230374cc1fd776feae5" } ,
2020-09-16 07:41:53 +00:00
]
parso = [
2021-05-02 22:12:04 +00:00
{ file = "parso-0.8.2-py2.py3-none-any.whl" , hash = "sha256:a8c4922db71e4fdb90e0d0bc6e50f9b273d3397925e5e60a717e719201778d22" } ,
{ file = "parso-0.8.2.tar.gz" , hash = "sha256:12b83492c6239ce32ff5eed6d3639d6a536170723c6f3f1506869f1ace413398" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
pastel = [
{ file = "pastel-0.2.1-py2.py3-none-any.whl" , hash = "sha256:4349225fcdf6c2bb34d483e523475de5bb04a5c10ef711263452cb37d7dd4364" } ,
{ file = "pastel-0.2.1.tar.gz" , hash = "sha256:e6581ac04e973cac858828c6202c1e1e81fee1dc7de7683f3e1ffe0bfd8a573d" } ,
]
2020-09-16 07:41:53 +00:00
pathspec = [
2020-12-22 02:18:46 +00:00
{ file = "pathspec-0.8.1-py2.py3-none-any.whl" , hash = "sha256:aa0cb481c4041bf52ffa7b0d8fa6cd3e88a2ca4879c533c9153882ee2556790d" } ,
{ file = "pathspec-0.8.1.tar.gz" , hash = "sha256:86379d6b86d75816baba717e64b1a3a3469deb93bb76d613c9ce79edc5cb68fd" } ,
2020-09-16 07:41:53 +00:00
]
pbr = [
2021-05-02 22:12:04 +00:00
{ file = "pbr-5.6.0-py2.py3-none-any.whl" , hash = "sha256:c68c661ac5cc81058ac94247278eeda6d2e6aecb3e227b0387c30d277e7ef8d4" } ,
{ file = "pbr-5.6.0.tar.gz" , hash = "sha256:42df03e7797b796625b1029c0400279c7c34fd7df24a7d7818a1abb5b38710dd" } ,
2020-09-16 07:41:53 +00:00
]
2020-09-21 23:38:52 +00:00
peewee = [
2021-05-02 22:12:04 +00:00
{ file = "peewee-3.14.4.tar.gz" , hash = "sha256:9e356b327c2eaec6dd42ecea6f4ddded025793dba906a3d065a0452e726c51a2" } ,
2020-09-21 23:38:52 +00:00
]
2020-09-16 07:41:53 +00:00
pexpect = [
{ file = "pexpect-4.8.0-py2.py3-none-any.whl" , hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937" } ,
{ file = "pexpect-4.8.0.tar.gz" , hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c" } ,
]
pickleshare = [
{ file = "pickleshare-0.7.5-py2.py3-none-any.whl" , hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56" } ,
{ file = "pickleshare-0.7.5.tar.gz" , hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca" } ,
]
2020-12-22 02:52:07 +00:00
pkginfo = [
2021-05-02 22:12:04 +00:00
{ file = "pkginfo-1.7.0-py2.py3-none-any.whl" , hash = "sha256:9fdbea6495622e022cc72c2e5e1b735218e4ffb2a2a69cde2694a6c1f16afb75" } ,
{ file = "pkginfo-1.7.0.tar.gz" , hash = "sha256:029a70cb45c6171c329dfc890cde0879f8c52d6f3922794796e06f577bb03db4" } ,
2020-12-22 02:52:07 +00:00
]
2020-09-16 07:41:53 +00:00
pluggy = [
{ file = "pluggy-0.13.1-py2.py3-none-any.whl" , hash = "sha256:966c145cd83c96502c3c3868f50408687b38434af77734af1e9ca461a4081d2d" } ,
{ file = "pluggy-0.13.1.tar.gz" , hash = "sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0" } ,
]
2020-12-22 02:52:07 +00:00
poetry = [
2021-05-02 22:12:04 +00:00
{ file = "poetry-1.1.6-py2.py3-none-any.whl" , hash = "sha256:768d87fdad55c8b2512996aea74bc389b4772680dcafea90643bdf8eaedf6ca0" } ,
{ file = "poetry-1.1.6.tar.gz" , hash = "sha256:e7c58a50c14aebc18e7de9df64f1dad74b194f21b8e5257251449f0feb4784fa" } ,
2020-12-22 02:52:07 +00:00
]
poetry-core = [
2021-05-02 22:12:04 +00:00
{ file = "poetry-core-1.0.3.tar.gz" , hash = "sha256:2315c928249fc3207801a81868b64c66273077b26c8d8da465dccf8f488c90c5" } ,
{ file = "poetry_core-1.0.3-py2.py3-none-any.whl" , hash = "sha256:c6bde46251112de8384013e1ab8d66e7323d2c75172f80220aba2bc07e208e9a" } ,
2020-12-22 02:52:07 +00:00
]
2020-09-16 07:41:53 +00:00
pre-commit = [
2021-05-02 22:12:04 +00:00
{ file = "pre_commit-2.12.1-py2.py3-none-any.whl" , hash = "sha256:70c5ec1f30406250b706eda35e868b87e3e4ba099af8787e3e8b4b01e84f4712" } ,
{ file = "pre_commit-2.12.1.tar.gz" , hash = "sha256:900d3c7e1bf4cf0374bb2893c24c23304952181405b4d88c9c40b72bda1bb8a9" } ,
2020-12-22 02:18:46 +00:00
]
pre-commit-hooks = [
{ file = "pre_commit_hooks-3.4.0-py2.py3-none-any.whl" , hash = "sha256:b1d329fc712f53f56af7c4a0ac08c414a7fcfd634dbd829c3a03f39cfb9c3574" } ,
{ file = "pre_commit_hooks-3.4.0.tar.gz" , hash = "sha256:57e377b931aceead550e4a7bdbe8065e79e371e80f593b5b6d1129e63a77154f" } ,
2020-09-16 07:41:53 +00:00
]
prompt-toolkit = [
2021-05-02 22:12:04 +00:00
{ file = "prompt_toolkit-3.0.18-py3-none-any.whl" , hash = "sha256:bf00f22079f5fadc949f42ae8ff7f05702826a97059ffcc6281036ad40ac6f04" } ,
{ file = "prompt_toolkit-3.0.18.tar.gz" , hash = "sha256:e1b4f11b9336a28fa11810bc623c357420f69dfdb6d2dac41ca2c21a55c033bc" } ,
2020-09-16 07:41:53 +00:00
]
ptyprocess = [
2021-05-02 22:12:04 +00:00
{ file = "ptyprocess-0.7.0-py2.py3-none-any.whl" , hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35" } ,
{ file = "ptyprocess-0.7.0.tar.gz" , hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220" } ,
2020-09-16 07:41:53 +00:00
]
py = [
2020-12-22 02:18:46 +00:00
{ file = "py-1.10.0-py2.py3-none-any.whl" , hash = "sha256:3b80836aa6d1feeaa108e046da6423ab8f6ceda6468545ae8d02d9d58d18818a" } ,
{ file = "py-1.10.0.tar.gz" , hash = "sha256:21b81bda15b66ef5e1a777a21c4dcd9c20ad3efd0b3f817e7a809035269e1bd3" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
pycparser = [
{ file = "pycparser-2.20-py2.py3-none-any.whl" , hash = "sha256:7582ad22678f0fcd81102833f60ef8d0e57288b6b5fb00323d101be910e35705" } ,
{ file = "pycparser-2.20.tar.gz" , hash = "sha256:2d475327684562c3a96cc71adf7dc8c4f0565175cf86b6d7a404ff4c771f15f0" } ,
]
2020-09-16 07:41:53 +00:00
pygments = [
2021-05-05 17:48:02 +00:00
{ file = "Pygments-2.9.0-py3-none-any.whl" , hash = "sha256:d66e804411278594d764fc69ec36ec13d9ae9147193a1740cd34d272ca383b8e" } ,
{ file = "Pygments-2.9.0.tar.gz" , hash = "sha256:a18f47b506a429f6f4b9df81bb02beab9ca21d0a5fee38ed15aef65f0545519f" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
pylev = [
{ file = "pylev-1.3.0-py2.py3-none-any.whl" , hash = "sha256:1d29a87beb45ebe1e821e7a3b10da2b6b2f4c79b43f482c2df1a1f748a6e114e" } ,
{ file = "pylev-1.3.0.tar.gz" , hash = "sha256:063910098161199b81e453025653ec53556c1be7165a9b7c50be2f4d57eae1c3" } ,
]
2020-09-16 07:41:53 +00:00
pylint = [
2021-05-02 22:12:04 +00:00
{ file = "pylint-2.8.2-py3-none-any.whl" , hash = "sha256:f7e2072654a6b6afdf5e2fb38147d3e2d2d43c89f648637baab63e026481279b" } ,
{ file = "pylint-2.8.2.tar.gz" , hash = "sha256:586d8fa9b1891f4b725f587ef267abe2a1bad89d6b184520c7f07a253dd6e217" } ,
2020-09-16 07:41:53 +00:00
]
pyparsing = [
{ file = "pyparsing-2.4.7-py2.py3-none-any.whl" , hash = "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b" } ,
{ file = "pyparsing-2.4.7.tar.gz" , hash = "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1" } ,
]
pytest = [
{ file = "pytest-5.4.3-py3-none-any.whl" , hash = "sha256:5c0db86b698e8f170ba4582a492248919255fcd4c79b1ee64ace34301fb589a1" } ,
{ file = "pytest-5.4.3.tar.gz" , hash = "sha256:7979331bfcba207414f5e1263b5a0f8f521d0f457318836a7355531ed1a4c7d8" } ,
]
pytest-cov = [
2021-05-02 22:12:04 +00:00
{ file = "pytest-cov-2.11.1.tar.gz" , hash = "sha256:359952d9d39b9f822d9d29324483e7ba04a3a17dd7d05aa6beb7ea01e359e5f7" } ,
{ file = "pytest_cov-2.11.1-py2.py3-none-any.whl" , hash = "sha256:bdb9fdb0b85a7cc825269a4c56b48ccaa5c7e365054b6038772c32ddcdc969da" } ,
2020-09-16 07:41:53 +00:00
]
pytz = [
2021-05-02 22:12:04 +00:00
{ file = "pytz-2021.1-py2.py3-none-any.whl" , hash = "sha256:eb10ce3e7736052ed3623d49975ce333bcd712c7bb19a58b9e2089d4057d0798" } ,
{ file = "pytz-2021.1.tar.gz" , hash = "sha256:83a4a90894bf38e243cf052c8b58f381bfe9a7a483f6a9cab140bc7f702ac4da" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
pywin32-ctypes = [
{ file = "pywin32-ctypes-0.2.0.tar.gz" , hash = "sha256:24ffc3b341d457d48e8922352130cf2644024a4ff09762a2261fd34c36ee5942" } ,
{ file = "pywin32_ctypes-0.2.0-py2.py3-none-any.whl" , hash = "sha256:9dc2d991b3479cc2df15930958b674a48a227d5361d413827a4cfd0b5876fc98" } ,
]
2020-09-16 07:41:53 +00:00
pyyaml = [
2021-05-02 22:12:04 +00:00
{ file = "PyYAML-5.4.1-cp27-cp27m-macosx_10_9_x86_64.whl" , hash = "sha256:3b2b1824fe7112845700f815ff6a489360226a5609b96ec2190a45e62a9fc922" } ,
{ file = "PyYAML-5.4.1-cp27-cp27m-win32.whl" , hash = "sha256:129def1b7c1bf22faffd67b8f3724645203b79d8f4cc81f674654d9902cb4393" } ,
{ file = "PyYAML-5.4.1-cp27-cp27m-win_amd64.whl" , hash = "sha256:4465124ef1b18d9ace298060f4eccc64b0850899ac4ac53294547536533800c8" } ,
{ file = "PyYAML-5.4.1-cp27-cp27mu-manylinux1_x86_64.whl" , hash = "sha256:bb4191dfc9306777bc594117aee052446b3fa88737cd13b7188d0e7aa8162185" } ,
{ file = "PyYAML-5.4.1-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:6c78645d400265a062508ae399b60b8c167bf003db364ecb26dcab2bda048253" } ,
{ file = "PyYAML-5.4.1-cp36-cp36m-manylinux1_x86_64.whl" , hash = "sha256:4e0583d24c881e14342eaf4ec5fbc97f934b999a6828693a99157fde912540cc" } ,
{ file = "PyYAML-5.4.1-cp36-cp36m-win32.whl" , hash = "sha256:3bd0e463264cf257d1ffd2e40223b197271046d09dadf73a0fe82b9c1fc385a5" } ,
{ file = "PyYAML-5.4.1-cp36-cp36m-win_amd64.whl" , hash = "sha256:e4fac90784481d221a8e4b1162afa7c47ed953be40d31ab4629ae917510051df" } ,
{ file = "PyYAML-5.4.1-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:5accb17103e43963b80e6f837831f38d314a0495500067cb25afab2e8d7a4018" } ,
{ file = "PyYAML-5.4.1-cp37-cp37m-manylinux1_x86_64.whl" , hash = "sha256:e1d4970ea66be07ae37a3c2e48b5ec63f7ba6804bdddfdbd3cfd954d25a82e63" } ,
{ file = "PyYAML-5.4.1-cp37-cp37m-win32.whl" , hash = "sha256:dd5de0646207f053eb0d6c74ae45ba98c3395a571a2891858e87df7c9b9bd51b" } ,
{ file = "PyYAML-5.4.1-cp37-cp37m-win_amd64.whl" , hash = "sha256:08682f6b72c722394747bddaf0aa62277e02557c0fd1c42cb853016a38f8dedf" } ,
{ file = "PyYAML-5.4.1-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:d2d9808ea7b4af864f35ea216be506ecec180628aced0704e34aca0b040ffe46" } ,
{ file = "PyYAML-5.4.1-cp38-cp38-manylinux1_x86_64.whl" , hash = "sha256:8c1be557ee92a20f184922c7b6424e8ab6691788e6d86137c5d93c1a6ec1b8fb" } ,
{ file = "PyYAML-5.4.1-cp38-cp38-win32.whl" , hash = "sha256:fa5ae20527d8e831e8230cbffd9f8fe952815b2b7dae6ffec25318803a7528fc" } ,
{ file = "PyYAML-5.4.1-cp38-cp38-win_amd64.whl" , hash = "sha256:0f5f5786c0e09baddcd8b4b45f20a7b5d61a7e7e99846e3c799b05c7c53fa696" } ,
{ file = "PyYAML-5.4.1-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:294db365efa064d00b8d1ef65d8ea2c3426ac366c0c4368d930bf1c5fb497f77" } ,
{ file = "PyYAML-5.4.1-cp39-cp39-manylinux1_x86_64.whl" , hash = "sha256:74c1485f7707cf707a7aef42ef6322b8f97921bd89be2ab6317fd782c2d53183" } ,
{ file = "PyYAML-5.4.1-cp39-cp39-win32.whl" , hash = "sha256:49d4cdd9065b9b6e206d0595fee27a96b5dd22618e7520c33204a4a3239d5b10" } ,
{ file = "PyYAML-5.4.1-cp39-cp39-win_amd64.whl" , hash = "sha256:c20cfa2d49991c8b4147af39859b167664f2ad4561704ee74c1de03318e898db" } ,
{ file = "PyYAML-5.4.1.tar.gz" , hash = "sha256:607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e" } ,
2020-09-16 07:41:53 +00:00
]
regex = [
2021-05-02 22:12:04 +00:00
{ file = "regex-2021.4.4-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:619d71c59a78b84d7f18891fe914446d07edd48dc8328c8e149cbe0929b4e000" } ,
{ file = "regex-2021.4.4-cp36-cp36m-manylinux1_i686.whl" , hash = "sha256:47bf5bf60cf04d72bf6055ae5927a0bd9016096bf3d742fa50d9bf9f45aa0711" } ,
{ file = "regex-2021.4.4-cp36-cp36m-manylinux1_x86_64.whl" , hash = "sha256:281d2fd05555079448537fe108d79eb031b403dac622621c78944c235f3fcf11" } ,
{ file = "regex-2021.4.4-cp36-cp36m-manylinux2010_i686.whl" , hash = "sha256:bd28bc2e3a772acbb07787c6308e00d9626ff89e3bfcdebe87fa5afbfdedf968" } ,
{ file = "regex-2021.4.4-cp36-cp36m-manylinux2010_x86_64.whl" , hash = "sha256:7c2a1af393fcc09e898beba5dd59196edaa3116191cc7257f9224beaed3e1aa0" } ,
{ file = "regex-2021.4.4-cp36-cp36m-manylinux2014_aarch64.whl" , hash = "sha256:c38c71df845e2aabb7fb0b920d11a1b5ac8526005e533a8920aea97efb8ec6a4" } ,
{ file = "regex-2021.4.4-cp36-cp36m-manylinux2014_i686.whl" , hash = "sha256:96fcd1888ab4d03adfc9303a7b3c0bd78c5412b2bfbe76db5b56d9eae004907a" } ,
{ file = "regex-2021.4.4-cp36-cp36m-manylinux2014_x86_64.whl" , hash = "sha256:ade17eb5d643b7fead300a1641e9f45401c98eee23763e9ed66a43f92f20b4a7" } ,
{ file = "regex-2021.4.4-cp36-cp36m-win32.whl" , hash = "sha256:e8e5b509d5c2ff12f8418006d5a90e9436766133b564db0abaec92fd27fcee29" } ,
{ file = "regex-2021.4.4-cp36-cp36m-win_amd64.whl" , hash = "sha256:11d773d75fa650cd36f68d7ca936e3c7afaae41b863b8c387a22aaa78d3c5c79" } ,
{ file = "regex-2021.4.4-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:d3029c340cfbb3ac0a71798100ccc13b97dddf373a4ae56b6a72cf70dfd53bc8" } ,
{ file = "regex-2021.4.4-cp37-cp37m-manylinux1_i686.whl" , hash = "sha256:18c071c3eb09c30a264879f0d310d37fe5d3a3111662438889ae2eb6fc570c31" } ,
{ file = "regex-2021.4.4-cp37-cp37m-manylinux1_x86_64.whl" , hash = "sha256:4c557a7b470908b1712fe27fb1ef20772b78079808c87d20a90d051660b1d69a" } ,
{ file = "regex-2021.4.4-cp37-cp37m-manylinux2010_i686.whl" , hash = "sha256:01afaf2ec48e196ba91b37451aa353cb7eda77efe518e481707e0515025f0cd5" } ,
{ file = "regex-2021.4.4-cp37-cp37m-manylinux2010_x86_64.whl" , hash = "sha256:3a9cd17e6e5c7eb328517969e0cb0c3d31fd329298dd0c04af99ebf42e904f82" } ,
{ file = "regex-2021.4.4-cp37-cp37m-manylinux2014_aarch64.whl" , hash = "sha256:90f11ff637fe8798933fb29f5ae1148c978cccb0452005bf4c69e13db951e765" } ,
{ file = "regex-2021.4.4-cp37-cp37m-manylinux2014_i686.whl" , hash = "sha256:919859aa909429fb5aa9cf8807f6045592c85ef56fdd30a9a3747e513db2536e" } ,
{ file = "regex-2021.4.4-cp37-cp37m-manylinux2014_x86_64.whl" , hash = "sha256:339456e7d8c06dd36a22e451d58ef72cef293112b559010db3d054d5560ef439" } ,
{ file = "regex-2021.4.4-cp37-cp37m-win32.whl" , hash = "sha256:67bdb9702427ceddc6ef3dc382455e90f785af4c13d495f9626861763ee13f9d" } ,
{ file = "regex-2021.4.4-cp37-cp37m-win_amd64.whl" , hash = "sha256:32e65442138b7b76dd8173ffa2cf67356b7bc1768851dded39a7a13bf9223da3" } ,
{ file = "regex-2021.4.4-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:1e1c20e29358165242928c2de1482fb2cf4ea54a6a6dea2bd7a0e0d8ee321500" } ,
{ file = "regex-2021.4.4-cp38-cp38-manylinux1_i686.whl" , hash = "sha256:314d66636c494ed9c148a42731b3834496cc9a2c4251b1661e40936814542b14" } ,
{ file = "regex-2021.4.4-cp38-cp38-manylinux1_x86_64.whl" , hash = "sha256:6d1b01031dedf2503631d0903cb563743f397ccaf6607a5e3b19a3d76fc10480" } ,
{ file = "regex-2021.4.4-cp38-cp38-manylinux2010_i686.whl" , hash = "sha256:741a9647fcf2e45f3a1cf0e24f5e17febf3efe8d4ba1281dcc3aa0459ef424dc" } ,
{ file = "regex-2021.4.4-cp38-cp38-manylinux2010_x86_64.whl" , hash = "sha256:4c46e22a0933dd783467cf32b3516299fb98cfebd895817d685130cc50cd1093" } ,
{ file = "regex-2021.4.4-cp38-cp38-manylinux2014_aarch64.whl" , hash = "sha256:e512d8ef5ad7b898cdb2d8ee1cb09a8339e4f8be706d27eaa180c2f177248a10" } ,
{ file = "regex-2021.4.4-cp38-cp38-manylinux2014_i686.whl" , hash = "sha256:980d7be47c84979d9136328d882f67ec5e50008681d94ecc8afa8a65ed1f4a6f" } ,
{ file = "regex-2021.4.4-cp38-cp38-manylinux2014_x86_64.whl" , hash = "sha256:ce15b6d103daff8e9fee13cf7f0add05245a05d866e73926c358e871221eae87" } ,
{ file = "regex-2021.4.4-cp38-cp38-win32.whl" , hash = "sha256:a91aa8619b23b79bcbeb37abe286f2f408d2f2d6f29a17237afda55bb54e7aac" } ,
{ file = "regex-2021.4.4-cp38-cp38-win_amd64.whl" , hash = "sha256:c0502c0fadef0d23b128605d69b58edb2c681c25d44574fc673b0e52dce71ee2" } ,
{ file = "regex-2021.4.4-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:598585c9f0af8374c28edd609eb291b5726d7cbce16be6a8b95aa074d252ee17" } ,
{ file = "regex-2021.4.4-cp39-cp39-manylinux1_i686.whl" , hash = "sha256:ee54ff27bf0afaf4c3b3a62bcd016c12c3fdb4ec4f413391a90bd38bc3624605" } ,
{ file = "regex-2021.4.4-cp39-cp39-manylinux1_x86_64.whl" , hash = "sha256:7d9884d86dd4dd489e981d94a65cd30d6f07203d90e98f6f657f05170f6324c9" } ,
{ file = "regex-2021.4.4-cp39-cp39-manylinux2010_i686.whl" , hash = "sha256:bf5824bfac591ddb2c1f0a5f4ab72da28994548c708d2191e3b87dd207eb3ad7" } ,
{ file = "regex-2021.4.4-cp39-cp39-manylinux2010_x86_64.whl" , hash = "sha256:563085e55b0d4fb8f746f6a335893bda5c2cef43b2f0258fe1020ab1dd874df8" } ,
{ file = "regex-2021.4.4-cp39-cp39-manylinux2014_aarch64.whl" , hash = "sha256:b9c3db21af35e3b3c05764461b262d6f05bbca08a71a7849fd79d47ba7bc33ed" } ,
{ file = "regex-2021.4.4-cp39-cp39-manylinux2014_i686.whl" , hash = "sha256:3916d08be28a1149fb97f7728fca1f7c15d309a9f9682d89d79db75d5e52091c" } ,
{ file = "regex-2021.4.4-cp39-cp39-manylinux2014_x86_64.whl" , hash = "sha256:fd45ff9293d9274c5008a2054ecef86a9bfe819a67c7be1afb65e69b405b3042" } ,
{ file = "regex-2021.4.4-cp39-cp39-win32.whl" , hash = "sha256:fa4537fb4a98fe8fde99626e4681cc644bdcf2a795038533f9f711513a862ae6" } ,
{ file = "regex-2021.4.4-cp39-cp39-win_amd64.whl" , hash = "sha256:97f29f57d5b84e73fbaf99ab3e26134e6687348e95ef6b48cfd2c06807005a07" } ,
{ file = "regex-2021.4.4.tar.gz" , hash = "sha256:52ba3d3f9b942c49d7e4bc105bb28551c44065f139a65062ab7912bef10c9afb" } ,
2020-09-16 07:41:53 +00:00
]
reorder-python-imports = [
2021-05-02 22:12:04 +00:00
{ file = "reorder_python_imports-2.5.0-py2.py3-none-any.whl" , hash = "sha256:ea237fabc1812c33bd9549b55e7ab15f096cd46fea336b7b0a7b7a297cabcc06" } ,
{ file = "reorder_python_imports-2.5.0.tar.gz" , hash = "sha256:7b8bd21cacc78be5674cc7f9a3fbeb63404f810ec3cbdd6b10f87e2dbb62f7cf" } ,
2020-09-16 07:41:53 +00:00
]
requests = [
2020-12-22 02:18:46 +00:00
{ file = "requests-2.25.1-py2.py3-none-any.whl" , hash = "sha256:c210084e36a42ae6b9219e00e48287def368a26d03a048ddad7bfee44f75871e" } ,
{ file = "requests-2.25.1.tar.gz" , hash = "sha256:27973dd4a904a4f13b263a19c866c13b92a39ed1c964655f025f3f8d3d75b804" } ,
]
2020-12-22 02:52:07 +00:00
requests-toolbelt = [
{ file = "requests-toolbelt-0.9.1.tar.gz" , hash = "sha256:968089d4584ad4ad7c171454f0a5c6dac23971e9472521ea3b6d49d610aa6fc0" } ,
{ file = "requests_toolbelt-0.9.1-py2.py3-none-any.whl" , hash = "sha256:380606e1d10dc85c3bd47bf5a6095f815ec007be7a8b69c878507068df059e6f" } ,
]
2020-12-22 02:18:46 +00:00
"ruamel.yaml" = [
2021-05-02 22:12:04 +00:00
{ file = "ruamel.yaml-0.16.13-py2.py3-none-any.whl" , hash = "sha256:64b06e7873eb8e1125525ecef7345447d786368cadca92a7cd9b59eae62e95a3" } ,
{ file = "ruamel.yaml-0.16.13.tar.gz" , hash = "sha256:bb48c514222702878759a05af96f4b7ecdba9b33cd4efcf25c86b882cef3a942" } ,
2020-12-22 02:18:46 +00:00
]
"ruamel.yaml.clib" = [
{ file = "ruamel.yaml.clib-0.2.2-cp27-cp27m-macosx_10_9_x86_64.whl" , hash = "sha256:28116f204103cb3a108dfd37668f20abe6e3cafd0d3fd40dba126c732457b3cc" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp27-cp27m-manylinux1_x86_64.whl" , hash = "sha256:daf21aa33ee9b351f66deed30a3d450ab55c14242cfdfcd377798e2c0d25c9f1" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp27-cp27m-win32.whl" , hash = "sha256:30dca9bbcbb1cc858717438218d11eafb78666759e5094dd767468c0d577a7e7" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp27-cp27m-win_amd64.whl" , hash = "sha256:f6061a31880c1ed6b6ce341215336e2f3d0c1deccd84957b6fa8ca474b41e89f" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp27-cp27mu-manylinux1_x86_64.whl" , hash = "sha256:73b3d43e04cc4b228fa6fa5d796409ece6fcb53a6c270eb2048109cbcbc3b9c2" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp35-cp35m-macosx_10_6_intel.whl" , hash = "sha256:53b9dd1abd70e257a6e32f934ebc482dac5edb8c93e23deb663eac724c30b026" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp35-cp35m-manylinux1_x86_64.whl" , hash = "sha256:839dd72545ef7ba78fd2aa1a5dd07b33696adf3e68fae7f31327161c1093001b" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp35-cp35m-manylinux2014_aarch64.whl" , hash = "sha256:1236df55e0f73cd138c0eca074ee086136c3f16a97c2ac719032c050f7e0622f" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp35-cp35m-win32.whl" , hash = "sha256:b1e981fe1aff1fd11627f531524826a4dcc1f26c726235a52fcb62ded27d150f" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp35-cp35m-win_amd64.whl" , hash = "sha256:4e52c96ca66de04be42ea2278012a2342d89f5e82b4512fb6fb7134e377e2e62" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:a873e4d4954f865dcb60bdc4914af7eaae48fb56b60ed6daa1d6251c72f5337c" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp36-cp36m-manylinux1_x86_64.whl" , hash = "sha256:ab845f1f51f7eb750a78937be9f79baea4a42c7960f5a94dde34e69f3cce1988" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp36-cp36m-manylinux2014_aarch64.whl" , hash = "sha256:2fd336a5c6415c82e2deb40d08c222087febe0aebe520f4d21910629018ab0f3" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp36-cp36m-win32.whl" , hash = "sha256:e9f7d1d8c26a6a12c23421061f9022bb62704e38211fe375c645485f38df34a2" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp36-cp36m-win_amd64.whl" , hash = "sha256:2602e91bd5c1b874d6f93d3086f9830f3e907c543c7672cf293a97c3fabdcd91" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:44c7b0498c39f27795224438f1a6be6c5352f82cb887bc33d962c3a3acc00df6" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp37-cp37m-manylinux1_x86_64.whl" , hash = "sha256:8e8fd0a22c9d92af3a34f91e8a2594eeb35cba90ab643c5e0e643567dc8be43e" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp37-cp37m-manylinux2014_aarch64.whl" , hash = "sha256:75f0ee6839532e52a3a53f80ce64925ed4aed697dd3fa890c4c918f3304bd4f4" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp37-cp37m-win32.whl" , hash = "sha256:464e66a04e740d754170be5e740657a3b3b6d2bcc567f0c3437879a6e6087ff6" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp37-cp37m-win_amd64.whl" , hash = "sha256:52ae5739e4b5d6317b52f5b040b1b6639e8af68a5b8fd606a8b08658fbd0cab5" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:4df5019e7783d14b79217ad9c56edf1ba7485d614ad5a385d1b3c768635c81c0" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp38-cp38-manylinux1_x86_64.whl" , hash = "sha256:5254af7d8bdf4d5484c089f929cb7f5bafa59b4f01d4f48adda4be41e6d29f99" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp38-cp38-manylinux2014_aarch64.whl" , hash = "sha256:8be05be57dc5c7b4a0b24edcaa2f7275866d9c907725226cdde46da09367d923" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp38-cp38-win32.whl" , hash = "sha256:74161d827407f4db9072011adcfb825b5258a5ccb3d2cd518dd6c9edea9e30f1" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp38-cp38-win_amd64.whl" , hash = "sha256:058a1cc3df2a8aecc12f983a48bda99315cebf55a3b3a5463e37bb599b05727b" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:c6ac7e45367b1317e56f1461719c853fd6825226f45b835df7436bb04031fd8a" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp39-cp39-manylinux1_x86_64.whl" , hash = "sha256:b4b0d31f2052b3f9f9b5327024dc629a253a83d8649d4734ca7f35b60ec3e9e5" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp39-cp39-manylinux2014_aarch64.whl" , hash = "sha256:1f8c0a4577c0e6c99d208de5c4d3fd8aceed9574bb154d7a2b21c16bb924154c" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp39-cp39-win32.whl" , hash = "sha256:46d6d20815064e8bb023ea8628cfb7402c0f0e83de2c2227a88097e239a7dffd" } ,
{ file = "ruamel.yaml.clib-0.2.2-cp39-cp39-win_amd64.whl" , hash = "sha256:6c0a5dc52fc74eb87c67374a4e554d4761fd42a4d01390b7e868b30d21f4b8bb" } ,
{ file = "ruamel.yaml.clib-0.2.2.tar.gz" , hash = "sha256:2d24bd98af676f4990c4d715bcdc2a60b19c56a3fb3a763164d2d8ca0e806ba7" } ,
2020-09-16 07:41:53 +00:00
]
safety = [
2021-05-02 22:12:04 +00:00
{ file = "safety-1.10.3-py2.py3-none-any.whl" , hash = "sha256:5f802ad5df5614f9622d8d71fedec2757099705c2356f862847c58c6dfe13e84" } ,
{ file = "safety-1.10.3.tar.gz" , hash = "sha256:30e394d02a20ac49b7f65292d19d38fa927a8f9582cdfd3ad1adbbc66c641ad5" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
secretstorage = [
2021-05-02 22:12:04 +00:00
{ file = "SecretStorage-3.3.1-py3-none-any.whl" , hash = "sha256:422d82c36172d88d6a0ed5afdec956514b189ddbfb72fefab0c8a1cee4eaf71f" } ,
{ file = "SecretStorage-3.3.1.tar.gz" , hash = "sha256:fd666c51a6bf200643495a04abb261f83229dcb6fd8472ec393df7ffc8b6f195" } ,
2020-12-22 02:52:07 +00:00
]
shellingham = [
2021-05-02 22:12:04 +00:00
{ file = "shellingham-1.4.0-py2.py3-none-any.whl" , hash = "sha256:536b67a0697f2e4af32ab176c00a50ac2899c5a05e0d8e2dadac8e58888283f9" } ,
{ file = "shellingham-1.4.0.tar.gz" , hash = "sha256:4855c2458d6904829bd34c299f11fdeed7cfefbf8a2c522e4caea6cd76b3171e" } ,
2020-12-22 02:52:07 +00:00
]
2020-09-16 07:41:53 +00:00
six = [
2021-05-05 17:48:02 +00:00
{ file = "six-1.16.0-py2.py3-none-any.whl" , hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" } ,
{ file = "six-1.16.0.tar.gz" , hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926" } ,
2020-09-16 07:41:53 +00:00
]
smmap = [
2021-05-02 22:12:04 +00:00
{ file = "smmap-4.0.0-py2.py3-none-any.whl" , hash = "sha256:a9a7479e4c572e2e775c404dcd3080c8dc49f39918c2cf74913d30c4c478e3c2" } ,
{ file = "smmap-4.0.0.tar.gz" , hash = "sha256:7e65386bd122d45405ddf795637b7f7d2b532e7e401d46bbe3fb49b9986d5182" } ,
2020-09-16 07:41:53 +00:00
]
snowballstemmer = [
2021-05-02 22:12:04 +00:00
{ file = "snowballstemmer-2.1.0-py2.py3-none-any.whl" , hash = "sha256:b51b447bea85f9968c13b650126a888aabd4cb4463fca868ec596826325dedc2" } ,
{ file = "snowballstemmer-2.1.0.tar.gz" , hash = "sha256:e997baa4f2e9139951b6f4c631bad912dfd3c792467e2f03d7239464af90e914" } ,
2020-09-16 07:41:53 +00:00
]
sphinx = [
2021-05-02 22:12:04 +00:00
{ file = "Sphinx-3.5.4-py3-none-any.whl" , hash = "sha256:2320d4e994a191f4b4be27da514e46b3d6b420f2ff895d064f52415d342461e8" } ,
{ file = "Sphinx-3.5.4.tar.gz" , hash = "sha256:19010b7b9fa0dc7756a6e105b2aacd3a80f798af3c25c273be64d7beeb482cb1" } ,
2020-09-16 07:41:53 +00:00
]
sphinx-autodoc-typehints = [
2021-05-02 22:12:04 +00:00
{ file = "sphinx-autodoc-typehints-1.12.0.tar.gz" , hash = "sha256:193617d9dbe0847281b1399d369e74e34cd959c82e02c7efde077fca908a9f52" } ,
{ file = "sphinx_autodoc_typehints-1.12.0-py3-none-any.whl" , hash = "sha256:5e81776ec422dd168d688ab60f034fccfafbcd94329e9537712c93003bddc04a" } ,
2020-09-16 07:41:53 +00:00
]
sphinxcontrib-applehelp = [
{ file = "sphinxcontrib-applehelp-1.0.2.tar.gz" , hash = "sha256:a072735ec80e7675e3f432fcae8610ecf509c5f1869d17e2eecff44389cdbc58" } ,
{ file = "sphinxcontrib_applehelp-1.0.2-py2.py3-none-any.whl" , hash = "sha256:806111e5e962be97c29ec4c1e7fe277bfd19e9652fb1a4392105b43e01af885a" } ,
]
sphinxcontrib-devhelp = [
{ file = "sphinxcontrib-devhelp-1.0.2.tar.gz" , hash = "sha256:ff7f1afa7b9642e7060379360a67e9c41e8f3121f2ce9164266f61b9f4b338e4" } ,
{ file = "sphinxcontrib_devhelp-1.0.2-py2.py3-none-any.whl" , hash = "sha256:8165223f9a335cc1af7ffe1ed31d2871f325254c0423bc0c4c7cd1c1e4734a2e" } ,
]
sphinxcontrib-htmlhelp = [
{ file = "sphinxcontrib-htmlhelp-1.0.3.tar.gz" , hash = "sha256:e8f5bb7e31b2dbb25b9cc435c8ab7a79787ebf7f906155729338f3156d93659b" } ,
{ file = "sphinxcontrib_htmlhelp-1.0.3-py2.py3-none-any.whl" , hash = "sha256:3c0bc24a2c41e340ac37c85ced6dafc879ab485c095b1d65d2461ac2f7cca86f" } ,
]
sphinxcontrib-jsmath = [
{ file = "sphinxcontrib-jsmath-1.0.1.tar.gz" , hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8" } ,
{ file = "sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl" , hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178" } ,
]
sphinxcontrib-qthelp = [
{ file = "sphinxcontrib-qthelp-1.0.3.tar.gz" , hash = "sha256:4c33767ee058b70dba89a6fc5c1892c0d57a54be67ddd3e7875a18d14cba5a72" } ,
{ file = "sphinxcontrib_qthelp-1.0.3-py2.py3-none-any.whl" , hash = "sha256:bd9fc24bcb748a8d51fd4ecaade681350aa63009a347a8c14e637895444dfab6" } ,
]
sphinxcontrib-serializinghtml = [
{ file = "sphinxcontrib-serializinghtml-1.1.4.tar.gz" , hash = "sha256:eaa0eccc86e982a9b939b2b82d12cc5d013385ba5eadcc7e4fed23f4405f77bc" } ,
{ file = "sphinxcontrib_serializinghtml-1.1.4-py2.py3-none-any.whl" , hash = "sha256:f242a81d423f59617a8e5cf16f5d4d74e28ee9a66f9e5b637a18082991db5a9a" } ,
]
stevedore = [
2020-12-22 02:18:46 +00:00
{ file = "stevedore-3.3.0-py3-none-any.whl" , hash = "sha256:50d7b78fbaf0d04cd62411188fa7eedcb03eb7f4c4b37005615ceebe582aa82a" } ,
{ file = "stevedore-3.3.0.tar.gz" , hash = "sha256:3a5bbd0652bf552748871eaa73a4a8dc2899786bc497a2aa1fcb4dcdb0debeee" } ,
2020-09-16 07:41:53 +00:00
]
toml = [
2020-12-22 02:18:46 +00:00
{ file = "toml-0.10.2-py2.py3-none-any.whl" , hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b" } ,
{ file = "toml-0.10.2.tar.gz" , hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
tomlkit = [
{ file = "tomlkit-0.7.0-py2.py3-none-any.whl" , hash = "sha256:6babbd33b17d5c9691896b0e68159215a9387ebfa938aa3ac42f4a4beeb2b831" } ,
{ file = "tomlkit-0.7.0.tar.gz" , hash = "sha256:ac57f29693fab3e309ea789252fcce3061e19110085aa31af5446ca749325618" } ,
]
2020-09-16 07:41:53 +00:00
tox = [
2021-05-05 17:48:02 +00:00
{ file = "tox-3.23.1-py2.py3-none-any.whl" , hash = "sha256:b0b5818049a1c1997599d42012a637a33f24c62ab8187223fdd318fa8522637b" } ,
{ file = "tox-3.23.1.tar.gz" , hash = "sha256:307a81ddb82bd463971a273f33e9533a24ed22185f27db8ce3386bff27d324e3" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
tox-poetry-installer = [
2021-05-02 22:12:04 +00:00
{ file = "tox-poetry-installer-0.7.0.tar.gz" , hash = "sha256:409560bbaa6910475f224c2d1541b8c8d6215209bda395cd28c9307e8cbb861d" } ,
{ file = "tox_poetry_installer-0.7.0-py3-none-any.whl" , hash = "sha256:f4f158bc40c003abbb2595344d1c854da8cb36e83d3510a47db1524512bfa898" } ,
2020-12-22 02:52:07 +00:00
]
2020-09-16 07:41:53 +00:00
traitlets = [
2020-12-22 02:18:46 +00:00
{ file = "traitlets-5.0.5-py3-none-any.whl" , hash = "sha256:69ff3f9d5351f31a7ad80443c2674b7099df13cc41fc5fa6e2f6d3b0330b0426" } ,
{ file = "traitlets-5.0.5.tar.gz" , hash = "sha256:178f4ce988f69189f7e523337a3e11d91c786ded9360174a3d9ca83e79bc5396" } ,
2020-09-16 07:41:53 +00:00
]
typed-ast = [
2021-05-02 22:12:04 +00:00
{ file = "typed_ast-1.4.3-cp35-cp35m-manylinux1_i686.whl" , hash = "sha256:2068531575a125b87a41802130fa7e29f26c09a2833fea68d9a40cf33902eba6" } ,
{ file = "typed_ast-1.4.3-cp35-cp35m-manylinux1_x86_64.whl" , hash = "sha256:c907f561b1e83e93fad565bac5ba9c22d96a54e7ea0267c708bffe863cbe4075" } ,
{ file = "typed_ast-1.4.3-cp35-cp35m-manylinux2014_aarch64.whl" , hash = "sha256:1b3ead4a96c9101bef08f9f7d1217c096f31667617b58de957f690c92378b528" } ,
{ file = "typed_ast-1.4.3-cp35-cp35m-win32.whl" , hash = "sha256:dde816ca9dac1d9c01dd504ea5967821606f02e510438120091b84e852367428" } ,
{ file = "typed_ast-1.4.3-cp35-cp35m-win_amd64.whl" , hash = "sha256:777a26c84bea6cd934422ac2e3b78863a37017618b6e5c08f92ef69853e765d3" } ,
{ file = "typed_ast-1.4.3-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:f8afcf15cc511ada719a88e013cec87c11aff7b91f019295eb4530f96fe5ef2f" } ,
{ file = "typed_ast-1.4.3-cp36-cp36m-manylinux1_i686.whl" , hash = "sha256:52b1eb8c83f178ab787f3a4283f68258525f8d70f778a2f6dd54d3b5e5fb4341" } ,
{ file = "typed_ast-1.4.3-cp36-cp36m-manylinux1_x86_64.whl" , hash = "sha256:01ae5f73431d21eead5015997ab41afa53aa1fbe252f9da060be5dad2c730ace" } ,
{ file = "typed_ast-1.4.3-cp36-cp36m-manylinux2014_aarch64.whl" , hash = "sha256:c190f0899e9f9f8b6b7863debfb739abcb21a5c054f911ca3596d12b8a4c4c7f" } ,
{ file = "typed_ast-1.4.3-cp36-cp36m-win32.whl" , hash = "sha256:398e44cd480f4d2b7ee8d98385ca104e35c81525dd98c519acff1b79bdaac363" } ,
{ file = "typed_ast-1.4.3-cp36-cp36m-win_amd64.whl" , hash = "sha256:bff6ad71c81b3bba8fa35f0f1921fb24ff4476235a6e94a26ada2e54370e6da7" } ,
{ file = "typed_ast-1.4.3-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:0fb71b8c643187d7492c1f8352f2c15b4c4af3f6338f21681d3681b3dc31a266" } ,
{ file = "typed_ast-1.4.3-cp37-cp37m-manylinux1_i686.whl" , hash = "sha256:760ad187b1041a154f0e4d0f6aae3e40fdb51d6de16e5c99aedadd9246450e9e" } ,
{ file = "typed_ast-1.4.3-cp37-cp37m-manylinux1_x86_64.whl" , hash = "sha256:5feca99c17af94057417d744607b82dd0a664fd5e4ca98061480fd8b14b18d04" } ,
{ file = "typed_ast-1.4.3-cp37-cp37m-manylinux2014_aarch64.whl" , hash = "sha256:95431a26309a21874005845c21118c83991c63ea800dd44843e42a916aec5899" } ,
{ file = "typed_ast-1.4.3-cp37-cp37m-win32.whl" , hash = "sha256:aee0c1256be6c07bd3e1263ff920c325b59849dc95392a05f258bb9b259cf39c" } ,
{ file = "typed_ast-1.4.3-cp37-cp37m-win_amd64.whl" , hash = "sha256:9ad2c92ec681e02baf81fdfa056fe0d818645efa9af1f1cd5fd6f1bd2bdfd805" } ,
{ file = "typed_ast-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:b36b4f3920103a25e1d5d024d155c504080959582b928e91cb608a65c3a49e1a" } ,
{ file = "typed_ast-1.4.3-cp38-cp38-manylinux1_i686.whl" , hash = "sha256:067a74454df670dcaa4e59349a2e5c81e567d8d65458d480a5b3dfecec08c5ff" } ,
{ file = "typed_ast-1.4.3-cp38-cp38-manylinux1_x86_64.whl" , hash = "sha256:7538e495704e2ccda9b234b82423a4038f324f3a10c43bc088a1636180f11a41" } ,
{ file = "typed_ast-1.4.3-cp38-cp38-manylinux2014_aarch64.whl" , hash = "sha256:af3d4a73793725138d6b334d9d247ce7e5f084d96284ed23f22ee626a7b88e39" } ,
{ file = "typed_ast-1.4.3-cp38-cp38-win32.whl" , hash = "sha256:f2362f3cb0f3172c42938946dbc5b7843c2a28aec307c49100c8b38764eb6927" } ,
{ file = "typed_ast-1.4.3-cp38-cp38-win_amd64.whl" , hash = "sha256:dd4a21253f42b8d2b48410cb31fe501d32f8b9fbeb1f55063ad102fe9c425e40" } ,
{ file = "typed_ast-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:f328adcfebed9f11301eaedfa48e15bdece9b519fb27e6a8c01aa52a17ec31b3" } ,
{ file = "typed_ast-1.4.3-cp39-cp39-manylinux1_i686.whl" , hash = "sha256:2c726c276d09fc5c414693a2de063f521052d9ea7c240ce553316f70656c84d4" } ,
{ file = "typed_ast-1.4.3-cp39-cp39-manylinux1_x86_64.whl" , hash = "sha256:cae53c389825d3b46fb37538441f75d6aecc4174f615d048321b716df2757fb0" } ,
{ file = "typed_ast-1.4.3-cp39-cp39-manylinux2014_aarch64.whl" , hash = "sha256:b9574c6f03f685070d859e75c7f9eeca02d6933273b5e69572e5ff9d5e3931c3" } ,
{ file = "typed_ast-1.4.3-cp39-cp39-win32.whl" , hash = "sha256:209596a4ec71d990d71d5e0d312ac935d86930e6eecff6ccc7007fe54d703808" } ,
{ file = "typed_ast-1.4.3-cp39-cp39-win_amd64.whl" , hash = "sha256:9c6d1a54552b5330bc657b7ef0eae25d00ba7ffe85d9ea8ae6540d2197a3788c" } ,
{ file = "typed_ast-1.4.3.tar.gz" , hash = "sha256:fb1bbeac803adea29cedd70781399c99138358c26d05fcbd23c13016b7f5ec65" } ,
2020-09-16 07:41:53 +00:00
]
typing-extensions = [
2021-05-02 22:12:04 +00:00
{ file = "typing_extensions-3.10.0.0-py2-none-any.whl" , hash = "sha256:0ac0f89795dd19de6b97debb0c6af1c70987fd80a2d62d1958f7e56fcc31b497" } ,
{ file = "typing_extensions-3.10.0.0-py3-none-any.whl" , hash = "sha256:779383f6086d90c99ae41cf0ff39aac8a7937a9283ce0a414e5dd782f4c94a84" } ,
{ file = "typing_extensions-3.10.0.0.tar.gz" , hash = "sha256:50b6f157849174217d0656f99dc82fe932884fb250826c18350e159ec6cdf342" } ,
2020-09-16 07:41:53 +00:00
]
urllib3 = [
2021-05-02 22:12:04 +00:00
{ file = "urllib3-1.26.4-py2.py3-none-any.whl" , hash = "sha256:2f4da4594db7e1e110a944bb1b551fdf4e6c136ad42e4234131391e21eb5b0df" } ,
{ file = "urllib3-1.26.4.tar.gz" , hash = "sha256:e7b021f7241115872f92f43c6508082facffbd1c048e3c6e2bb9c2a157e28937" } ,
2020-09-16 07:41:53 +00:00
]
virtualenv = [
2021-05-05 17:48:02 +00:00
{ file = "virtualenv-20.4.5-py2.py3-none-any.whl" , hash = "sha256:73b4186ee7e08ffd1a96cd5d60e5a946132f8ce4736e8f209eda3a6c35b2ceb8" } ,
{ file = "virtualenv-20.4.5.tar.gz" , hash = "sha256:e82dbb66e0d6ecf626f037df256f185571da552007bfa9f3f317216f5f3aac1c" } ,
2020-09-16 07:41:53 +00:00
]
wcwidth = [
{ file = "wcwidth-0.2.5-py2.py3-none-any.whl" , hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784" } ,
{ file = "wcwidth-0.2.5.tar.gz" , hash = "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83" } ,
]
2020-12-22 02:52:07 +00:00
webencodings = [
{ file = "webencodings-0.5.1-py2.py3-none-any.whl" , hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78" } ,
{ file = "webencodings-0.5.1.tar.gz" , hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923" } ,
]
2020-09-18 02:22:48 +00:00
werkzeug = [
{ file = "Werkzeug-1.0.1-py2.py3-none-any.whl" , hash = "sha256:2de2a5db0baeae7b2d2664949077c2ac63fbd16d98da0ff71837f7d1dea3fd43" } ,
{ file = "Werkzeug-1.0.1.tar.gz" , hash = "sha256:6c80b1e5ad3665290ea39320b91e1be1e0d5f60652b964a3070216de83d2e47c" } ,
]
2020-09-16 07:41:53 +00:00
wrapt = [
{ file = "wrapt-1.12.1.tar.gz" , hash = "sha256:b62ffa81fb85f4332a4f609cab4ac40709470da05643a082ec1eb88e6d9b97d7" } ,
]
zipp = [
2021-05-02 22:12:04 +00:00
{ file = "zipp-3.4.1-py3-none-any.whl" , hash = "sha256:51cb66cc54621609dd593d1787f286ee42a5c0adbb4b29abea5a63edc3e03098" } ,
{ file = "zipp-3.4.1.tar.gz" , hash = "sha256:3607921face881ba3e026887d8150cca609d517579abe052ac81fc5aeffdbd76" } ,
2020-09-16 07:41:53 +00:00
]