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 = "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-11-23 19:56:13 +00:00
version = "2.8.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"
2021-11-14 05:00:23 +00:00
typed-ast = { version = ">=1.4.0,<2.0" , markers = "implementation_name == \"cpython\" and python_version < \"3.8\"" }
typing-extensions = { version = ">=3.10" , markers = "python_version < \"3.10\"" }
wrapt = ">=1.11,<1.14"
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 = "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 = "*"
2021-11-14 05:00:23 +00:00
[ [ package ] ]
name = "backports.entry-points-selectable"
version = "1.1.1"
description = "Compatibility shim providing selectable entry points for older implementations"
category = "dev"
optional = false
python-versions = ">=2.7"
[ package . dependencies ]
importlib-metadata = { version = "*" , markers = "python_version < \"3.8\"" }
[ package . extras ]
docs = [ "sphinx" , "jaraco.packaging (>=8.2)" , "rst.linker (>=1.9)" ]
testing = [ "pytest" , "pytest-flake8" , "pytest-cov" , "pytest-black (>=0.3.7)" , "pytest-mypy" , "pytest-checkdocs (>=2.4)" , "pytest-enabler (>=1.0.1)" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "bandit"
2021-11-14 05:00:23 +00:00
version = "1.7.1"
2020-12-22 02:18:46 +00:00
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
stevedore = ">=1.20.0"
[ [ package ] ]
name = "black"
2021-11-23 19:56:13 +00:00
version = "21.11b1"
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 ]
click = ">=7.1.2"
2020-12-22 02:18:46 +00:00
mypy-extensions = ">=0.4.3"
2021-11-14 05:00:23 +00:00
pathspec = ">=0.9.0,<1"
platformdirs = ">=2"
2021-11-23 19:56:13 +00:00
regex = ">=2021.4.4"
2021-11-14 05:00:23 +00:00
tomli = ">=0.2.6,<2.0.0"
2021-11-23 19:56:13 +00:00
typed-ast = { version = ">=1.4.2" , markers = "python_version < \"3.8\" and implementation_name == \"cpython\"" }
2021-11-14 05:00:23 +00:00
typing-extensions = [
{ version = ">=3.10.0.0" , markers = "python_version < \"3.10\"" } ,
{ version = "!=3.10.0.1" , markers = "python_version >= \"3.10\"" } ,
]
2020-09-16 07:41:53 +00:00
[ package . extras ]
colorama = [ "colorama (>=0.4.3)" ]
2021-11-14 05:00:23 +00:00
d = [ "aiohttp (>=3.7.4)" ]
jupyter = [ "ipython (>=7.8.0)" , "tokenize-rt (>=3.2.0)" ]
python2 = [ "typed-ast (>=1.4.3)" ]
uvloop = [ "uvloop (>=0.15.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-11-23 19:56:13 +00:00
version = "1.12.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"
2021-11-13 05:55:50 +00:00
version = "0.12.10"
2020-12-22 02:52:07 +00:00
description = "httplib2 caching for requests"
category = "dev"
optional = false
2021-11-13 05:55:50 +00:00
python-versions = ">=3.6"
2020-12-22 02:52:07 +00:00
[ 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"
2021-11-14 05:00:23 +00:00
version = "2021.10.8"
2020-12-22 02:18:46 +00:00
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-11-14 05:00:23 +00:00
version = "1.15.0"
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"
2021-11-14 05:00:23 +00:00
version = "3.3.1"
2020-12-22 02:18:46 +00:00
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 ] ]
2021-11-14 05:00:23 +00:00
name = "charset-normalizer"
version = "2.0.7"
description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
2020-12-22 02:18:46 +00:00
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-11-14 05:00:23 +00:00
python-versions = ">=3.5.0"
[ package . extras ]
unicode_backport = [ "unicodedata2" ]
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-11-14 05:00:23 +00:00
version = "6.1.2"
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
2021-11-14 05:00:23 +00:00
python-versions = ">=3.6"
2020-09-16 07:41:53 +00:00
[ package . extras ]
2021-11-14 05:00:23 +00:00
toml = [ "tomli" ]
2020-09-16 07:41:53 +00:00
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-11-23 19:56:13 +00:00
version = "36.0.0"
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" ]
2021-11-23 19:56:13 +00:00
docstest = [ "pyenchant (>=1.6.11)" , "twine (>=1.12.0)" , "sphinxcontrib-spelling (>=4.0.1)" ]
2020-12-22 02:52:07 +00:00
pep8test = [ "black" , "flake8" , "flake8-import-order" , "pep8-naming" ]
2021-11-14 05:00:23 +00:00
sdist = [ "setuptools_rust (>=0.11.4)" ]
2020-12-22 02:52:07 +00:00
ssh = [ "bcrypt (>=3.1.5)" ]
2021-11-14 05:00:23 +00:00
test = [ "pytest (>=6.2.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-11-14 05:00:23 +00:00
version = "5.1.0"
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"
2021-11-14 05:00:23 +00:00
version = "0.3.3"
2020-12-22 02:18:46 +00:00
description = "Distribution utilities"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = "*"
[ [ 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"
2021-11-23 19:56:13 +00:00
version = "3.4.0"
2020-12-22 02:18:46 +00:00
description = "A platform independent file lock."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-11-14 05:00:23 +00:00
python-versions = ">=3.6"
[ package . extras ]
docs = [ "furo (>=2021.8.17b43)" , "sphinx (>=4.1)" , "sphinx-autodoc-typehints (>=1.12)" ]
testing = [ "covdefaults (>=1.2.0)" , "coverage (>=4)" , "pytest (>=4)" , "pytest-cov" , "pytest-timeout (>=1.4.2)" ]
2020-09-16 07:41:53 +00:00
2020-09-18 02:22:48 +00:00
[ [ package ] ]
name = "flask"
2021-11-14 05:00:23 +00:00
version = "1.1.4"
2020-09-18 02:22:48 +00:00
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 ]
2021-11-14 05:00:23 +00:00
click = ">=5.1,<8.0"
itsdangerous = ">=0.24,<2.0"
Jinja2 = ">=2.10.1,<3.0"
Werkzeug = ">=0.15,<2.0"
2020-09-18 02:22:48 +00:00
[ 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"
2021-11-14 05:00:23 +00:00
version = "0.3.9"
2020-09-18 02:22:48 +00:00
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-11-14 05:00:23 +00:00
version = "4.0.9"
2020-12-22 02:18:46 +00:00
description = "Git Object Database"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-11-14 05:00:23 +00:00
python-versions = ">=3.6"
2020-09-16 07:41:53 +00:00
[ package . dependencies ]
2021-11-14 05:00:23 +00:00
smmap = ">=3.0.1,<6"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "gitpython"
2021-11-14 05:00:23 +00:00
version = "3.1.24"
description = "GitPython is a python library used to interact with Git repositories"
2020-12-22 02:18:46 +00:00
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-11-14 05:00:23 +00:00
python-versions = ">=3.7"
2020-09-16 07:41:53 +00:00
[ package . dependencies ]
gitdb = ">=4.0.1,<5"
2021-11-14 05:00:23 +00:00
typing-extensions = { version = ">=3.7.4.3" , markers = "python_version < \"3.10\"" }
2020-09-16 07:41:53 +00:00
2021-11-23 19:56:13 +00:00
[ [ package ] ]
name = "gunicorn"
version = "20.1.0"
description = "WSGI HTTP Server for UNIX"
category = "main"
optional = true
python-versions = ">=3.5"
[ package . extras ]
eventlet = [ "eventlet (>=0.24.1)" ]
gevent = [ "gevent (>=1.4.0)" ]
setproctitle = [ "setproctitle" ]
tornado = [ "tornado (>=0.2)" ]
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-11-23 19:56:13 +00:00
version = "2.4.0"
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-11-23 19:56:13 +00:00
license = [ "ukkonen" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "idna"
2021-11-14 05:00:23 +00:00
version = "3.3"
2020-12-22 02:18:46 +00:00
description = "Internationalized Domain Names in Applications (IDNA)"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-11-14 05:00:23 +00:00
python-versions = ">=3.5"
2020-09-16 07:41:53 +00:00
[ [ 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
2021-11-14 05:00:23 +00:00
[ [ package ] ]
name = "importlib-resources"
version = "5.4.0"
description = "Read resources from Python packages"
category = "dev"
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
zipp = { version = ">=3.1.0" , markers = "python_version < \"3.10\"" }
[ package . extras ]
docs = [ "sphinx" , "jaraco.packaging (>=8.2)" , "rst.linker (>=1.9)" ]
testing = [ "pytest (>=6)" , "pytest-checkdocs (>=2.4)" , "pytest-flake8" , "pytest-cov" , "pytest-enabler (>=1.0.1)" , "pytest-black (>=0.3.7)" , "pytest-mypy" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "ipython"
2021-11-14 05:00:23 +00:00
version = "7.29.0"
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-11-14 05:00:23 +00:00
all = [ "Sphinx (>=1.3)" , "ipykernel" , "ipyparallel" , "ipywidgets" , "nbconvert" , "nbformat" , "nose (>=0.10.1)" , "notebook" , "numpy (>=1.17)" , "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-11-14 05:00:23 +00:00
test = [ "nose (>=0.10.1)" , "requests" , "testpath" , "pygments" , "nbformat" , "ipykernel" , "numpy (>=1.17)" ]
2020-09-16 07:41:53 +00:00
2021-05-08 02:39:16 +00:00
[ [ package ] ]
name = "isodate"
version = "0.6.0"
description = "An ISO 8601 date/time/duration parser and formatter"
category = "dev"
optional = false
python-versions = "*"
[ package . dependencies ]
six = "*"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "isort"
2021-11-14 05:00:23 +00:00
version = "5.10.1"
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
2021-11-14 05:00:23 +00:00
python-versions = ">=3.6.1,<4.0"
2020-09-16 07:41:53 +00:00
[ 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)" ]
2021-11-14 05:00:23 +00:00
plugins = [ "setuptools" ]
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-11-23 19:56:13 +00:00
version = "0.18.1"
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)" ]
2021-11-23 19:56:13 +00:00
testing = [ "Django (<3.1)" , "colorama" , "docopt" , "pytest (<7.0.0)" ]
2020-09-16 07:41:53 +00:00
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "jeepney"
2021-11-14 05:00:23 +00:00
version = "0.7.1"
2020-12-22 02:52:07 +00:00
description = "Low-level, pure Python DBus protocol wrapper."
category = "dev"
optional = false
python-versions = ">=3.6"
[ package . extras ]
2021-11-14 05:00:23 +00:00
test = [ "pytest" , "pytest-trio" , "pytest-asyncio" , "testpath" , "trio" , "async-timeout" ]
trio = [ "trio" , "async-generator" ]
2020-12-22 02:52:07 +00:00
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)" ]
2021-05-08 02:39:16 +00:00
[ [ package ] ]
name = "jsonschema"
2021-11-14 05:00:23 +00:00
version = "4.2.1"
2021-05-08 02:39:16 +00:00
description = "An implementation of JSON Schema validation for Python"
category = "dev"
optional = false
2021-11-14 05:00:23 +00:00
python-versions = ">=3.7"
2021-05-08 02:39:16 +00:00
[ package . dependencies ]
attrs = ">=17.4.0"
importlib-metadata = { version = "*" , markers = "python_version < \"3.8\"" }
2021-11-14 05:00:23 +00:00
importlib-resources = { version = ">=1.4.0" , markers = "python_version < \"3.9\"" }
pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2"
2021-05-08 02:39:16 +00:00
[ package . extras ]
2021-11-14 05:00:23 +00:00
format = [ "fqdn" , "idna" , "isoduration" , "jsonpointer (>1.13)" , "rfc3339-validator" , "rfc3987" , "uri-template" , "webcolors (>=1.11)" ]
format_nongpl = [ "fqdn" , "idna" , "isoduration" , "jsonpointer (>1.13)" , "rfc3339-validator" , "rfc3986-validator (>0.1.0)" , "uri-template" , "webcolors (>=1.11)" ]
2021-05-08 02:39:16 +00:00
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"
2021-11-14 05:00:23 +00:00
version = "2.0.1"
2020-12-22 02:18:46 +00:00
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
2021-11-14 05:00:23 +00:00
python-versions = ">=3.6"
2020-09-16 07:41:53 +00:00
2021-05-02 22:12:04 +00:00
[ [ package ] ]
name = "matplotlib-inline"
2021-11-14 05:00:23 +00:00
version = "0.1.3"
2021-05-02 22:12:04 +00:00
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-11-14 05:00:23 +00:00
version = "8.11.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 = "*"
2021-05-08 02:39:16 +00:00
[ [ package ] ]
name = "openapi-schema-validator"
version = "0.1.5"
description = "OpenAPI schema validation for Python"
category = "dev"
optional = false
python-versions = ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*, != 3.4.*"
[ package . dependencies ]
isodate = "*"
jsonschema = ">=3.0.0"
six = "*"
[ package . extras ]
isodate = [ "isodate" ]
rfc3339_validator = [ "rfc3339-validator" ]
strict_rfc3339 = [ "strict-rfc3339" ]
[ [ package ] ]
name = "openapi-spec-validator"
2021-11-14 05:00:23 +00:00
version = "0.3.1"
description = "OpenAPI 2.0 (aka Swagger) and OpenAPI 3.0 spec validator"
2021-05-08 02:39:16 +00:00
category = "dev"
optional = false
python-versions = ">= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*, != 3.4.*"
[ package . dependencies ]
jsonschema = "*"
openapi-schema-validator = "*"
PyYAML = ">=5.1"
six = "*"
[ package . extras ]
dev = [ "pre-commit" ]
requests = [ "requests" ]
2020-09-16 07:41:53 +00:00
[ [ 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"
2021-11-14 05:00:23 +00:00
version = "0.9.0"
2020-12-22 02:18:46 +00:00
description = "Utility library for gitignore style pattern matching of file paths."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-11-14 05:00:23 +00:00
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "pbr"
2021-11-23 19:56:13 +00:00
version = "5.8.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-11-14 05:00:23 +00:00
version = "3.14.8"
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 = "*"
2021-11-14 05:00:23 +00:00
[ [ package ] ]
name = "pillow"
version = "8.4.0"
description = "Python Imaging Library (Fork)"
category = "main"
optional = false
python-versions = ">=3.6"
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "pkginfo"
2021-11-23 19:56:13 +00:00
version = "1.8.1"
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" ]
2021-11-14 05:00:23 +00:00
[ [ package ] ]
name = "platformdirs"
version = "2.4.0"
description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
category = "dev"
optional = false
python-versions = ">=3.6"
[ package . extras ]
docs = [ "Sphinx (>=4)" , "furo (>=2021.7.5b38)" , "proselint (>=0.10.2)" , "sphinx-autodoc-typehints (>=1.12)" ]
test = [ "appdirs (==1.4.4)" , "pytest (>=6)" , "pytest-cov (>=2.7)" , "pytest-mock (>=3.6)" ]
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-11-14 05:00:23 +00:00
version = "1.1.11"
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-11-14 05:00:23 +00:00
poetry-core = ">=1.0.7,<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-11-14 05:00:23 +00:00
version = "1.0.7"
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-11-14 05:00:23 +00:00
version = "2.15.0"
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-11-14 05:00:23 +00:00
version = "3.0.22"
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
2021-11-14 05:00:23 +00:00
python-versions = ">=3.6.2"
2020-09-16 07:41:53 +00:00
[ 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"
2021-11-14 05:00:23 +00:00
version = "1.11.0"
2020-12-22 02:18:46 +00:00
description = "library with cross-python path, ini-parsing, io, code, log facilities"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-11-14 05:00:23 +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 = "pycparser"
2021-11-14 05:00:23 +00:00
version = "2.21"
2020-12-22 02:52:07 +00:00
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-11-14 05:00:23 +00:00
version = "2.10.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"
2021-11-14 05:00:23 +00:00
version = "1.4.0"
2020-12-22 02:52:07 +00:00
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-11-14 05:00:23 +00:00
version = "2.11.1"
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-11-14 05:00:23 +00:00
astroid = ">=2.8.0,<2.9"
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"
2021-11-14 05:00:23 +00:00
platformdirs = ">=2.2.0"
2020-09-16 07:41:53 +00:00
toml = ">=0.7.1"
2021-11-14 05:00:23 +00:00
typing-extensions = { version = ">=3.10.0" , markers = "python_version < \"3.10\"" }
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "pyparsing"
2021-11-14 05:00:23 +00:00
version = "3.0.6"
2020-12-22 02:18:46 +00:00
description = "Python parsing module"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-11-14 05:00:23 +00:00
python-versions = ">=3.6"
[ package . extras ]
diagrams = [ "jinja2" , "railroad-diagrams" ]
2020-09-16 07:41:53 +00:00
2021-05-08 02:39:16 +00:00
[ [ package ] ]
name = "pyrsistent"
2021-11-14 05:00:23 +00:00
version = "0.18.0"
2021-05-08 02:39:16 +00:00
description = "Persistent/Functional/Immutable data structures"
category = "dev"
optional = false
2021-11-14 05:00:23 +00:00
python-versions = ">=3.6"
2021-05-08 02:39:16 +00:00
2020-09-16 07:41:53 +00:00
[ [ 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-11-14 05:00:23 +00:00
version = "2.12.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"
2021-11-14 05:00:23 +00:00
toml = "*"
2020-09-16 07:41:53 +00:00
[ package . extras ]
2021-11-14 05:00:23 +00:00
testing = [ "fields" , "hunter" , "process-tests" , "six" , "pytest-xdist" , "virtualenv" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "pytz"
2021-11-14 05:00:23 +00:00
version = "2021.3"
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-11-14 05:00:23 +00:00
version = "6.0"
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-11-14 05:00:23 +00:00
python-versions = ">=3.6"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "regex"
2021-11-14 05:00:23 +00:00
version = "2021.11.10"
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-11-14 05:00:23 +00:00
version = "2.6.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"
2021-11-14 05:00:23 +00:00
version = "2.26.0"
2020-12-22 02:18:46 +00:00
description = "Python HTTP for Humans."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-11-14 05:00:23 +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 . dependencies ]
certifi = ">=2017.4.17"
2021-11-14 05:00:23 +00:00
charset-normalizer = { version = ">=2.0.0,<2.1.0" , markers = "python_version >= \"3\"" }
idna = { version = ">=2.5,<4" , markers = "python_version >= \"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 ]
2020-12-22 02:18:46 +00:00
socks = [ "PySocks (>=1.5.6,!=1.5.7)" , "win-inet-pton" ]
2021-11-14 05:00:23 +00:00
use_chardet_on_py3 = [ "chardet (>=3.0.2,<5)" ]
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"
2021-11-14 05:00:23 +00:00
version = "0.2.6"
2020-12-22 02:18:46 +00:00
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
2021-11-14 05:00:23 +00:00
python-versions = ">=3.5"
2020-12-22 02:18:46 +00:00
[ [ 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-11-14 05:00:23 +00:00
version = "5.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-11-14 05:00:23 +00:00
python-versions = ">=3.6"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "stevedore"
2021-11-14 05:00:23 +00:00
version = "3.5.0"
2020-12-22 02:18:46 +00:00
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
2021-11-14 05:00:23 +00:00
[ [ package ] ]
name = "tomli"
version = "1.2.2"
description = "A lil' TOML parser"
category = "dev"
optional = false
python-versions = ">=3.6"
2020-12-22 02:52:07 +00:00
[ [ package ] ]
name = "tomlkit"
2021-11-14 05:00:23 +00:00
version = "0.7.2"
2020-12-22 02:52:07 +00:00
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-11-14 05:00:23 +00:00
version = "3.24.4"
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-10-29 03:17:00 +00:00
version = "0.8.2"
2021-05-02 22:12:04 +00:00
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"
2021-11-14 05:00:23 +00:00
version = "5.1.1"
2020-12-22 02:18:46 +00:00
description = "Traitlets Python configuration system"
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
python-versions = ">=3.7"
[ 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-11-23 19:56:13 +00:00
version = "4.0.0"
description = "Backported and Experimental Type Hints for Python 3.6+"
2020-12-22 02:18:46 +00:00
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-11-23 19:56:13 +00:00
python-versions = ">=3.6"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "urllib3"
2021-11-14 05:00:23 +00:00
version = "1.26.7"
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 ]
2021-11-14 05:00:23 +00:00
brotli = [ "brotlipy (>=0.6.0)" ]
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)" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "virtualenv"
2021-11-14 05:00:23 +00:00
version = "20.10.0"
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
2021-11-14 05:00:23 +00:00
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
2020-09-16 07:41:53 +00:00
[ package . dependencies ]
2021-11-14 05:00:23 +00:00
"backports.entry-points-selectable" = ">=1.0.4"
2020-09-16 07:41:53 +00:00
distlib = ">=0.3.1,<1"
2021-11-14 05:00:23 +00:00
filelock = ">=3.2,<4"
2020-12-22 02:18:46 +00:00
importlib-metadata = { version = ">=0.12" , markers = "python_version < \"3.8\"" }
2021-11-14 05:00:23 +00:00
platformdirs = ">=2,<3"
2020-09-16 07:41:53 +00:00
six = ">=1.9.0,<2"
[ package . extras ]
2021-11-14 05:00:23 +00:00
docs = [ "proselint (>=0.10.2)" , "sphinx (>=3)" , "sphinx-argparse (>=0.2.5)" , "sphinx-rtd-theme (>=0.4.3)" , "towncrier (>=21.3)" ]
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)" ]
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"
2021-11-14 05:00:23 +00:00
version = "1.0.1"
2020-09-18 02:22:48 +00:00
description = "The comprehensive WSGI web application library."
category = "main"
optional = false
2021-11-14 05:00:23 +00:00
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
2020-09-18 02:22:48 +00:00
[ package . extras ]
2021-11-14 05:00:23 +00:00
dev = [ "pytest" , "pytest-timeout" , "coverage" , "tox" , "sphinx" , "pallets-sphinx-themes" , "sphinx-issues" ]
2020-09-18 02:22:48 +00:00
watchdog = [ "watchdog" ]
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "wrapt"
2021-11-14 05:00:23 +00:00
version = "1.13.3"
2020-12-22 02:18:46 +00:00
description = "Module for decorators, wrappers and monkey patching."
category = "dev"
2020-09-16 07:41:53 +00:00
optional = false
2021-11-14 05:00:23 +00:00
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
2020-09-16 07:41:53 +00:00
[ [ package ] ]
name = "zipp"
2021-11-14 05:00:23 +00:00
version = "3.6.0"
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)" ]
2021-11-14 05:00:23 +00:00
testing = [ "pytest (>=4.6)" , "pytest-checkdocs (>=2.4)" , "pytest-flake8" , "pytest-cov" , "pytest-enabler (>=1.0.1)" , "jaraco.itertools" , "func-timeout" , "pytest-black (>=0.3.7)" , "pytest-mypy" ]
2020-09-16 07:41:53 +00:00
2021-11-23 19:56:13 +00:00
[ extras ]
deployment = [ "gunicorn" ]
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-11-23 19:56:13 +00:00
content-hash = "32b3b894e02b103ce94247add0af4a210cfa43c49f7b4aa5eb879adf69ee5cb2"
2020-09-16 07:41:53 +00:00
[ metadata . files ]
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
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-11-23 19:56:13 +00:00
{ file = "astroid-2.8.6-py3-none-any.whl" , hash = "sha256:cd8326b424c971e7d87678609cf6275d22028afd37d6ac59c16d47f1245882f6" } ,
{ file = "astroid-2.8.6.tar.gz" , hash = "sha256:5f6f75e45f15290e73b56f9dfde95b4bf96382284cde406ef4203e928335a495" } ,
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
]
backcall = [
{ file = "backcall-0.2.0-py2.py3-none-any.whl" , hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255" } ,
{ file = "backcall-0.2.0.tar.gz" , hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e" } ,
]
2021-11-14 05:00:23 +00:00
"backports.entry-points-selectable" = [
{ file = "backports.entry_points_selectable-1.1.1-py2.py3-none-any.whl" , hash = "sha256:7fceed9532a7aa2bd888654a7314f864a3c16a4e710b34a58cfc0f08114c663b" } ,
{ file = "backports.entry_points_selectable-1.1.1.tar.gz" , hash = "sha256:914b21a479fde881635f7af5adc7f6e38d6b274be32269070c53b698c60d5386" } ,
]
2020-09-16 07:41:53 +00:00
bandit = [
2021-11-14 05:00:23 +00:00
{ file = "bandit-1.7.1-py3-none-any.whl" , hash = "sha256:f5acd838e59c038a159b5c621cf0f8270b279e884eadd7b782d7491c02add0d4" } ,
{ file = "bandit-1.7.1.tar.gz" , hash = "sha256:a81b00b5436e6880fa8ad6799bc830e02032047713cbb143a12939ac67eb756c" } ,
2020-09-16 07:41:53 +00:00
]
2021-05-02 22:12:04 +00:00
black = [
2021-11-23 19:56:13 +00:00
{ file = "black-21.11b1-py3-none-any.whl" , hash = "sha256:802c6c30b637b28645b7fde282ed2569c0cd777dbe493a41b6a03c1d903f99ac" } ,
{ file = "black-21.11b1.tar.gz" , hash = "sha256:a042adbb18b3262faad5aff4e834ff186bb893f95ba3a8013f09de1e5569def2" } ,
2021-05-02 22:12:04 +00:00
]
2020-12-22 02:18:46 +00:00
blacken-docs = [
2021-11-23 19:56:13 +00:00
{ file = "blacken_docs-1.12.0-py2.py3-none-any.whl" , hash = "sha256:a81e0abc9771521f445ee582f469c8ec2f5880c19c369d766bb151f79f642d7b" } ,
{ file = "blacken_docs-1.12.0.tar.gz" , hash = "sha256:3e8138b22c33406cef5946058e535a8aca45cd64b8e7d392b3bd1329fc1f4af8" } ,
2020-12-22 02:18:46 +00:00
]
2020-12-22 02:52:07 +00:00
cachecontrol = [
2021-11-13 05:55:50 +00:00
{ file = "CacheControl-0.12.10-py2.py3-none-any.whl" , hash = "sha256:b0d43d8f71948ef5ebdee5fe236b86c6ffc7799370453dccb0e894c20dfa487c" } ,
{ file = "CacheControl-0.12.10.tar.gz" , hash = "sha256:d8aca75b82eec92d84b5d6eb8c8f66ea16f09d2adb09dbca27fe2d5fc8d3732d" } ,
2020-12-22 02:52:07 +00:00
]
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 = [
2021-11-14 05:00:23 +00:00
{ file = "certifi-2021.10.8-py2.py3-none-any.whl" , hash = "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569" } ,
{ file = "certifi-2021.10.8.tar.gz" , hash = "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
cffi = [
2021-11-14 05:00:23 +00:00
{ file = "cffi-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl" , hash = "sha256:c2502a1a03b6312837279c8c1bd3ebedf6c12c4228ddbad40912d671ccc8a962" } ,
{ file = "cffi-1.15.0-cp27-cp27m-manylinux1_i686.whl" , hash = "sha256:23cfe892bd5dd8941608f93348c0737e369e51c100d03718f108bf1add7bd6d0" } ,
{ file = "cffi-1.15.0-cp27-cp27m-manylinux1_x86_64.whl" , hash = "sha256:41d45de54cd277a7878919867c0f08b0cf817605e4eb94093e7516505d3c8d14" } ,
{ file = "cffi-1.15.0-cp27-cp27m-win32.whl" , hash = "sha256:4a306fa632e8f0928956a41fa8e1d6243c71e7eb59ffbd165fc0b41e316b2474" } ,
{ file = "cffi-1.15.0-cp27-cp27m-win_amd64.whl" , hash = "sha256:e7022a66d9b55e93e1a845d8c9eba2a1bebd4966cd8bfc25d9cd07d515b33fa6" } ,
{ file = "cffi-1.15.0-cp27-cp27mu-manylinux1_i686.whl" , hash = "sha256:14cd121ea63ecdae71efa69c15c5543a4b5fbcd0bbe2aad864baca0063cecf27" } ,
{ file = "cffi-1.15.0-cp27-cp27mu-manylinux1_x86_64.whl" , hash = "sha256:d4d692a89c5cf08a8557fdeb329b82e7bf609aadfaed6c0d79f5a449a3c7c023" } ,
{ file = "cffi-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:0104fb5ae2391d46a4cb082abdd5c69ea4eab79d8d44eaaf79f1b1fd806ee4c2" } ,
{ file = "cffi-1.15.0-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:91ec59c33514b7c7559a6acda53bbfe1b283949c34fe7440bcf917f96ac0723e" } ,
{ file = "cffi-1.15.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:f5c7150ad32ba43a07c4479f40241756145a1f03b43480e058cfd862bf5041c7" } ,
{ file = "cffi-1.15.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:00c878c90cb53ccfaae6b8bc18ad05d2036553e6d9d1d9dbcf323bbe83854ca3" } ,
{ file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:abb9a20a72ac4e0fdb50dae135ba5e77880518e742077ced47eb1499e29a443c" } ,
{ file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:a5263e363c27b653a90078143adb3d076c1a748ec9ecc78ea2fb916f9b861962" } ,
{ file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:f54a64f8b0c8ff0b64d18aa76675262e1700f3995182267998c31ae974fbc382" } ,
{ file = "cffi-1.15.0-cp310-cp310-win32.whl" , hash = "sha256:c21c9e3896c23007803a875460fb786118f0cdd4434359577ea25eb556e34c55" } ,
{ file = "cffi-1.15.0-cp310-cp310-win_amd64.whl" , hash = "sha256:5e069f72d497312b24fcc02073d70cb989045d1c91cbd53979366077959933e0" } ,
{ file = "cffi-1.15.0-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:64d4ec9f448dfe041705426000cc13e34e6e5bb13736e9fd62e34a0b0c41566e" } ,
{ file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:2756c88cbb94231c7a147402476be2c4df2f6078099a6f4a480d239a8817ae39" } ,
{ file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:3b96a311ac60a3f6be21d2572e46ce67f09abcf4d09344c49274eb9e0bf345fc" } ,
{ file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:75e4024375654472cc27e91cbe9eaa08567f7fbdf822638be2814ce059f58032" } ,
{ file = "cffi-1.15.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:59888172256cac5629e60e72e86598027aca6bf01fa2465bdb676d37636573e8" } ,
{ file = "cffi-1.15.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl" , hash = "sha256:27c219baf94952ae9d50ec19651a687b826792055353d07648a5695413e0c605" } ,
{ file = "cffi-1.15.0-cp36-cp36m-win32.whl" , hash = "sha256:4958391dbd6249d7ad855b9ca88fae690783a6be9e86df65865058ed81fc860e" } ,
{ file = "cffi-1.15.0-cp36-cp36m-win_amd64.whl" , hash = "sha256:f6f824dc3bce0edab5f427efcfb1d63ee75b6fcb7282900ccaf925be84efb0fc" } ,
{ file = "cffi-1.15.0-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:06c48159c1abed75c2e721b1715c379fa3200c7784271b3c46df01383b593636" } ,
{ file = "cffi-1.15.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:c2051981a968d7de9dd2d7b87bcb9c939c74a34626a6e2f8181455dd49ed69e4" } ,
{ file = "cffi-1.15.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:fd8a250edc26254fe5b33be00402e6d287f562b6a5b2152dec302fa15bb3e997" } ,
{ file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:91d77d2a782be4274da750752bb1650a97bfd8f291022b379bb8e01c66b4e96b" } ,
{ file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:45db3a33139e9c8f7c09234b5784a5e33d31fd6907800b316decad50af323ff2" } ,
{ file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:263cc3d821c4ab2213cbe8cd8b355a7f72a8324577dc865ef98487c1aeee2bc7" } ,
{ file = "cffi-1.15.0-cp37-cp37m-win32.whl" , hash = "sha256:17771976e82e9f94976180f76468546834d22a7cc404b17c22df2a2c81db0c66" } ,
{ file = "cffi-1.15.0-cp37-cp37m-win_amd64.whl" , hash = "sha256:3415c89f9204ee60cd09b235810be700e993e343a408693e80ce7f6a40108029" } ,
{ file = "cffi-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:4238e6dab5d6a8ba812de994bbb0a79bddbdf80994e4ce802b6f6f3142fcc880" } ,
{ file = "cffi-1.15.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:0808014eb713677ec1292301ea4c81ad277b6cdf2fdd90fd540af98c0b101d20" } ,
{ file = "cffi-1.15.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:57e9ac9ccc3101fac9d6014fba037473e4358ef4e89f8e181f8951a2c0162024" } ,
{ file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:8b6c2ea03845c9f501ed1313e78de148cd3f6cad741a75d43a29b43da27f2e1e" } ,
{ file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:10dffb601ccfb65262a27233ac273d552ddc4d8ae1bf93b21c94b8511bffe728" } ,
{ file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:786902fb9ba7433aae840e0ed609f45c7bcd4e225ebb9c753aa39725bb3e6ad6" } ,
{ file = "cffi-1.15.0-cp38-cp38-win32.whl" , hash = "sha256:da5db4e883f1ce37f55c667e5c0de439df76ac4cb55964655906306918e7363c" } ,
{ file = "cffi-1.15.0-cp38-cp38-win_amd64.whl" , hash = "sha256:181dee03b1170ff1969489acf1c26533710231c58f95534e3edac87fff06c443" } ,
{ file = "cffi-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:45e8636704eacc432a206ac7345a5d3d2c62d95a507ec70d62f23cd91770482a" } ,
{ file = "cffi-1.15.0-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:31fb708d9d7c3f49a60f04cf5b119aeefe5644daba1cd2a0fe389b674fd1de37" } ,
{ file = "cffi-1.15.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:6dc2737a3674b3e344847c8686cf29e500584ccad76204efea14f451d4cc669a" } ,
{ file = "cffi-1.15.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:74fdfdbfdc48d3f47148976f49fab3251e550a8720bebc99bf1483f5bfb5db3e" } ,
{ file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:ffaa5c925128e29efbde7301d8ecaf35c8c60ffbcd6a1ffd3a552177c8e5e796" } ,
{ file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:3f7d084648d77af029acb79a0ff49a0ad7e9d09057a9bf46596dac9514dc07df" } ,
{ file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:ef1f279350da2c586a69d32fc8733092fd32cc8ac95139a00377841f59a3f8d8" } ,
{ file = "cffi-1.15.0-cp39-cp39-win32.whl" , hash = "sha256:2a23af14f408d53d5e6cd4e3d9a24ff9e05906ad574822a10563efcef137979a" } ,
{ file = "cffi-1.15.0-cp39-cp39-win_amd64.whl" , hash = "sha256:3773c4d81e6e818df2efbc7dd77325ca0dcb688116050fb2b3011218eda36139" } ,
{ file = "cffi-1.15.0.tar.gz" , hash = "sha256:920f0d66a896c2d99f0adbb391f990a84091179542c205fa53ce5787aff87954" } ,
2020-12-22 02:52:07 +00:00
]
2020-09-16 07:41:53 +00:00
cfgv = [
2021-11-14 05:00:23 +00:00
{ file = "cfgv-3.3.1-py2.py3-none-any.whl" , hash = "sha256:c6a0883f3917a037485059700b9e75da2464e6c27051014ad85ba6aaa5884426" } ,
{ file = "cfgv-3.3.1.tar.gz" , hash = "sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736" } ,
2020-09-16 07:41:53 +00:00
]
2021-11-14 05:00:23 +00:00
charset-normalizer = [
{ file = "charset-normalizer-2.0.7.tar.gz" , hash = "sha256:e019de665e2bcf9c2b64e2e5aa025fa991da8720daa3c1138cadd2fd1856aed0" } ,
{ file = "charset_normalizer-2.0.7-py3-none-any.whl" , hash = "sha256:f7af805c321bfa1ce6714c51f254e0d5bb5e5834039bc17db7ebe3a4cec9492b" } ,
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-11-14 05:00:23 +00:00
{ file = "coverage-6.1.2-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:675adb3b3380967806b3cbb9c5b00ceb29b1c472692100a338730c1d3e59c8b9" } ,
{ file = "coverage-6.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:95a58336aa111af54baa451c33266a8774780242cab3704b7698d5e514840758" } ,
{ file = "coverage-6.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:d0a595a781f8e186580ff8e3352dd4953b1944289bec7705377c80c7e36c4d6c" } ,
{ file = "coverage-6.1.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:d3c5f49ce6af61154060640ad3b3281dbc46e2e0ef2fe78414d7f8a324f0b649" } ,
{ file = "coverage-6.1.2-cp310-cp310-musllinux_1_1_aarch64.whl" , hash = "sha256:310c40bed6b626fd1f463e5a83dba19a61c4eb74e1ac0d07d454ebbdf9047e9d" } ,
{ file = "coverage-6.1.2-cp310-cp310-musllinux_1_1_i686.whl" , hash = "sha256:a4d48e42e17d3de212f9af44f81ab73b9378a4b2b8413fd708d0d9023f2bbde4" } ,
{ file = "coverage-6.1.2-cp310-cp310-musllinux_1_1_x86_64.whl" , hash = "sha256:ffa545230ca2ad921ad066bf8fd627e7be43716b6e0fcf8e32af1b8188ccb0ab" } ,
{ file = "coverage-6.1.2-cp310-cp310-win32.whl" , hash = "sha256:cd2d11a59afa5001ff28073ceca24ae4c506da4355aba30d1e7dd2bd0d2206dc" } ,
{ file = "coverage-6.1.2-cp310-cp310-win_amd64.whl" , hash = "sha256:96129e41405887a53a9cc564f960d7f853cc63d178f3a182fdd302e4cab2745b" } ,
{ file = "coverage-6.1.2-cp311-cp311-macosx_10_14_x86_64.whl" , hash = "sha256:1de9c6f5039ee2b1860b7bad2c7bc3651fbeb9368e4c4d93e98a76358cdcb052" } ,
{ file = "coverage-6.1.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.whl" , hash = "sha256:80cb70264e9a1d04b519cdba3cd0dc42847bf8e982a4d55c769b9b0ee7cdce1e" } ,
{ file = "coverage-6.1.2-cp311-cp311-win_amd64.whl" , hash = "sha256:ba6125d4e55c0b8e913dad27b22722eac7abdcb1f3eab1bd090eee9105660266" } ,
{ file = "coverage-6.1.2-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:8492d37acdc07a6eac6489f6c1954026f2260a85a4c2bb1e343fe3d35f5ee21a" } ,
{ file = "coverage-6.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:66af99c7f7b64d050d37e795baadf515b4561124f25aae6e1baa482438ecc388" } ,
{ file = "coverage-6.1.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:ebcc03e1acef4ff44f37f3c61df478d6e469a573aa688e5a162f85d7e4c3860d" } ,
{ file = "coverage-6.1.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:98d44a8136eebbf544ad91fef5bd2b20ef0c9b459c65a833c923d9aa4546b204" } ,
{ file = "coverage-6.1.2-cp36-cp36m-musllinux_1_1_aarch64.whl" , hash = "sha256:c18725f3cffe96732ef96f3de1939d81215fd6d7d64900dcc4acfe514ea4fcbf" } ,
{ file = "coverage-6.1.2-cp36-cp36m-musllinux_1_1_i686.whl" , hash = "sha256:c8e9c4bcaaaa932be581b3d8b88b677489975f845f7714efc8cce77568b6711c" } ,
{ file = "coverage-6.1.2-cp36-cp36m-musllinux_1_1_x86_64.whl" , hash = "sha256:06d009e8a29483cbc0520665bc46035ffe9ae0e7484a49f9782c2a716e37d0a0" } ,
{ file = "coverage-6.1.2-cp36-cp36m-win32.whl" , hash = "sha256:e5432d9c329b11c27be45ee5f62cf20a33065d482c8dec1941d6670622a6fb8f" } ,
{ file = "coverage-6.1.2-cp36-cp36m-win_amd64.whl" , hash = "sha256:82fdcb64bf08aa5db881db061d96db102c77397a570fbc112e21c48a4d9cb31b" } ,
{ file = "coverage-6.1.2-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:94f558f8555e79c48c422045f252ef41eb43becdd945e9c775b45ebfc0cbd78f" } ,
{ file = "coverage-6.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:046647b96969fda1ae0605f61288635209dd69dcd27ba3ec0bf5148bc157f954" } ,
{ file = "coverage-6.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:cc799916b618ec9fd00135e576424165691fec4f70d7dc12cfaef09268a2478c" } ,
{ file = "coverage-6.1.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:62646d98cf0381ffda301a816d6ac6c35fc97aa81b09c4c52d66a15c4bef9d7c" } ,
{ file = "coverage-6.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl" , hash = "sha256:27a3df08a855522dfef8b8635f58bab81341b2fb5f447819bc252da3aa4cf44c" } ,
{ file = "coverage-6.1.2-cp37-cp37m-musllinux_1_1_i686.whl" , hash = "sha256:610c0ba11da8de3a753dc4b1f71894f9f9debfdde6559599f303286e70aeb0c2" } ,
{ file = "coverage-6.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl" , hash = "sha256:35b246ae3a2c042dc8f410c94bcb9754b18179cdb81ff9477a9089dbc9ecc186" } ,
{ file = "coverage-6.1.2-cp37-cp37m-win32.whl" , hash = "sha256:0cde7d9fe2fb55ff68ebe7fb319ef188e9b88e0a3d1c9c5db7dd829cd93d2193" } ,
{ file = "coverage-6.1.2-cp37-cp37m-win_amd64.whl" , hash = "sha256:958ac66272ff20e63d818627216e3d7412fdf68a2d25787b89a5c6f1eb7fdd93" } ,
{ file = "coverage-6.1.2-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:a300b39c3d5905686c75a369d2a66e68fd01472ea42e16b38c948bd02b29e5bd" } ,
{ file = "coverage-6.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:5d3855d5d26292539861f5ced2ed042fc2aa33a12f80e487053aed3bcb6ced13" } ,
{ file = "coverage-6.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:586d38dfc7da4a87f5816b203ff06dd7c1bb5b16211ccaa0e9788a8da2b93696" } ,
{ file = "coverage-6.1.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:a34fccb45f7b2d890183a263578d60a392a1a218fdc12f5bce1477a6a68d4373" } ,
{ file = "coverage-6.1.2-cp38-cp38-musllinux_1_1_aarch64.whl" , hash = "sha256:bc1ee1318f703bc6c971da700d74466e9b86e0c443eb85983fb2a1bd20447263" } ,
{ file = "coverage-6.1.2-cp38-cp38-musllinux_1_1_i686.whl" , hash = "sha256:3f546f48d5d80a90a266769aa613bc0719cb3e9c2ef3529d53f463996dd15a9d" } ,
{ file = "coverage-6.1.2-cp38-cp38-musllinux_1_1_x86_64.whl" , hash = "sha256:fd92ece726055e80d4e3f01fff3b91f54b18c9c357c48fcf6119e87e2461a091" } ,
{ file = "coverage-6.1.2-cp38-cp38-win32.whl" , hash = "sha256:24ed38ec86754c4d5a706fbd5b52b057c3df87901a8610d7e5642a08ec07087e" } ,
{ file = "coverage-6.1.2-cp38-cp38-win_amd64.whl" , hash = "sha256:97ef6e9119bd39d60ef7b9cd5deea2b34869c9f0b9777450a7e3759c1ab09b9b" } ,
{ file = "coverage-6.1.2-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:6e5a8c947a2a89c56655ecbb789458a3a8e3b0cbf4c04250331df8f647b3de59" } ,
{ file = "coverage-6.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:7a39590d1e6acf6a3c435c5d233f72f5d43b585f5be834cff1f21fec4afda225" } ,
{ file = "coverage-6.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:9d2c2e3ce7b8cc932a2f918186964bd44de8c84e2f9ef72dc616f5bb8be22e71" } ,
{ file = "coverage-6.1.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:3348865798c077c695cae00da0924136bb5cc501f236cfd6b6d9f7a3c94e0ec4" } ,
{ file = "coverage-6.1.2-cp39-cp39-win32.whl" , hash = "sha256:fae3fe111670e51f1ebbc475823899524e3459ea2db2cb88279bbfb2a0b8a3de" } ,
{ file = "coverage-6.1.2-cp39-cp39-win_amd64.whl" , hash = "sha256:af45eea024c0e3a25462fade161afab4f0d9d9e0d5a5d53e86149f74f0a35ecc" } ,
{ file = "coverage-6.1.2-pp36.pp37.pp38-none-any.whl" , hash = "sha256:eab14fdd410500dae50fd14ccc332e65543e7b39f6fc076fe90603a0e5d2f929" } ,
{ file = "coverage-6.1.2.tar.gz" , hash = "sha256:d9a635114b88c0ab462e0355472d00a180a5fbfd8511e7f18e4ac32652e7d972" } ,
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-11-23 19:56:13 +00:00
{ file = "cryptography-36.0.0-cp36-abi3-macosx_10_10_universal2.whl" , hash = "sha256:9511416e85e449fe1de73f7f99b21b3aa04fba4c4d335d30c486ba3756e3a2a6" } ,
{ file = "cryptography-36.0.0-cp36-abi3-macosx_10_10_x86_64.whl" , hash = "sha256:97199a13b772e74cdcdb03760c32109c808aff7cd49c29e9cf4b7754bb725d1d" } ,
{ file = "cryptography-36.0.0-cp36-abi3-macosx_11_0_arm64.whl" , hash = "sha256:494106e9cd945c2cadfce5374fa44c94cfadf01d4566a3b13bb487d2e6c7959e" } ,
{ file = "cryptography-36.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:6fbbbb8aab4053fa018984bb0e95a16faeb051dd8cca15add2a27e267ba02b58" } ,
{ file = "cryptography-36.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl" , hash = "sha256:684993ff6f67000a56454b41bdc7e015429732d65a52d06385b6e9de6181c71e" } ,
{ file = "cryptography-36.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:4c702855cd3174666ef0d2d13dcc879090aa9c6c38f5578896407a7028f75b9f" } ,
{ file = "cryptography-36.0.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:d91bc9f535599bed58f6d2e21a2724cb0c3895bf41c6403fe881391d29096f1d" } ,
{ file = "cryptography-36.0.0-cp36-abi3-manylinux_2_24_x86_64.whl" , hash = "sha256:b17d83b3d1610e571fedac21b2eb36b816654d6f7496004d6a0d32f99d1d8120" } ,
{ file = "cryptography-36.0.0-cp36-abi3-musllinux_1_1_aarch64.whl" , hash = "sha256:8982c19bb90a4fa2aad3d635c6d71814e38b643649b4000a8419f8691f20ac44" } ,
{ file = "cryptography-36.0.0-cp36-abi3-musllinux_1_1_x86_64.whl" , hash = "sha256:24469d9d33217ffd0ce4582dfcf2a76671af115663a95328f63c99ec7ece61a4" } ,
{ file = "cryptography-36.0.0-cp36-abi3-win32.whl" , hash = "sha256:f6a5a85beb33e57998dc605b9dbe7deaa806385fdf5c4810fb849fcd04640c81" } ,
{ file = "cryptography-36.0.0-cp36-abi3-win_amd64.whl" , hash = "sha256:2deab5ec05d83ddcf9b0916319674d3dae88b0e7ee18f8962642d3cde0496568" } ,
{ file = "cryptography-36.0.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:2049f8b87f449fc6190350de443ee0c1dd631f2ce4fa99efad2984de81031681" } ,
{ file = "cryptography-36.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:a776bae1629c8d7198396fd93ec0265f8dd2341c553dc32b976168aaf0e6a636" } ,
{ file = "cryptography-36.0.0-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl" , hash = "sha256:aa94d617a4cd4cdf4af9b5af65100c036bce22280ebb15d8b5262e8273ebc6ba" } ,
{ file = "cryptography-36.0.0-pp38-pypy38_pp73-macosx_10_10_x86_64.whl" , hash = "sha256:5c49c9e8fb26a567a2b3fa0343c89f5d325447956cc2fc7231c943b29a973712" } ,
{ file = "cryptography-36.0.0-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:ef216d13ac8d24d9cd851776662f75f8d29c9f2d05cdcc2d34a18d32463a9b0b" } ,
{ file = "cryptography-36.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:231c4a69b11f6af79c1495a0e5a85909686ea8db946935224b7825cfb53827ed" } ,
{ file = "cryptography-36.0.0-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl" , hash = "sha256:f92556f94e476c1b616e6daec5f7ddded2c082efa7cee7f31c7aeda615906ed8" } ,
{ file = "cryptography-36.0.0-pp38-pypy38_pp73-win_amd64.whl" , hash = "sha256:d73e3a96c38173e0aa5646c31bf8473bc3564837977dd480f5cbeacf1d7ef3a3" } ,
{ file = "cryptography-36.0.0.tar.gz" , hash = "sha256:52f769ecb4ef39865719aedc67b4b7eae167bafa48dbc2a26dd36fa56460507f" } ,
2020-12-22 02:52:07 +00:00
]
2020-09-16 07:41:53 +00:00
decorator = [
2021-11-14 05:00:23 +00:00
{ file = "decorator-5.1.0-py3-none-any.whl" , hash = "sha256:7b12e7c3c6ab203a29e157335e9122cb03de9ab7264b137594103fd4a683b374" } ,
{ file = "decorator-5.1.0.tar.gz" , hash = "sha256:e59913af105b9860aa2c8d3272d9de5a56a4e608db9a2f167a8480b323d529a7" } ,
2020-09-16 07:41:53 +00:00
]
distlib = [
2021-11-14 05:00:23 +00:00
{ file = "distlib-0.3.3-py2.py3-none-any.whl" , hash = "sha256:c8b54e8454e5bf6237cc84c20e8264c3e991e824ef27e8f1e81049867d861e31" } ,
{ file = "distlib-0.3.3.zip" , hash = "sha256:d982d0751ff6eaaab5e2ec8e691d949ee80eddf01a62eaa96ddb11531fe16b05" } ,
2020-09-16 07:41:53 +00:00
]
dparse = [
{ file = "dparse-0.5.1-py3-none-any.whl" , hash = "sha256:e953a25e44ebb60a5c6efc2add4420c177f1d8404509da88da9729202f306994" } ,
{ file = "dparse-0.5.1.tar.gz" , hash = "sha256:a1b5f169102e1c894f9a7d5ccf6f9402a836a5d24be80a986c7ce9eaed78f367" } ,
]
filelock = [
2021-11-23 19:56:13 +00:00
{ file = "filelock-3.4.0-py3-none-any.whl" , hash = "sha256:2e139a228bcf56dd8b2274a65174d005c4a6b68540ee0bdbb92c76f43f29f7e8" } ,
{ file = "filelock-3.4.0.tar.gz" , hash = "sha256:93d512b32a23baf4cac44ffd72ccf70732aeff7b8050fcaf6d3ec406d954baf4" } ,
2020-09-16 07:41:53 +00:00
]
2020-09-18 02:22:48 +00:00
flask = [
2021-11-14 05:00:23 +00:00
{ file = "Flask-1.1.4-py2.py3-none-any.whl" , hash = "sha256:c34f04500f2cbbea882b1acb02002ad6fe6b7ffa64a6164577995657f50aed22" } ,
{ file = "Flask-1.1.4.tar.gz" , hash = "sha256:0fbeb6180d383a9186d0d6ed954e0042ad9f18e0e8de088b2b419d526927d196" } ,
2020-09-18 02:22:48 +00:00
]
flask-restful = [
2021-11-14 05:00:23 +00:00
{ file = "Flask-RESTful-0.3.9.tar.gz" , hash = "sha256:ccec650b835d48192138c85329ae03735e6ced58e9b2d9c2146d6c84c06fa53e" } ,
{ file = "Flask_RESTful-0.3.9-py2.py3-none-any.whl" , hash = "sha256:4970c49b6488e46c520b325f54833374dc2b98e211f1b272bd4b0c516232afe2" } ,
2020-09-18 02:22:48 +00:00
]
2020-09-16 07:41:53 +00:00
gitdb = [
2021-11-14 05:00:23 +00:00
{ file = "gitdb-4.0.9-py3-none-any.whl" , hash = "sha256:8033ad4e853066ba6ca92050b9df2f89301b8fc8bf7e9324d412a63f8bf1a8fd" } ,
{ file = "gitdb-4.0.9.tar.gz" , hash = "sha256:bac2fd45c0a1c9cf619e63a90d62bdc63892ef92387424b855792a6cabe789aa" } ,
2020-09-16 07:41:53 +00:00
]
gitpython = [
2021-11-14 05:00:23 +00:00
{ file = "GitPython-3.1.24-py3-none-any.whl" , hash = "sha256:dc0a7f2f697657acc8d7f89033e8b1ea94dd90356b2983bca89dc8d2ab3cc647" } ,
{ file = "GitPython-3.1.24.tar.gz" , hash = "sha256:df83fdf5e684fef7c6ee2c02fc68a5ceb7e7e759d08b694088d0cacb4eba59e5" } ,
2020-09-16 07:41:53 +00:00
]
2021-11-23 19:56:13 +00:00
gunicorn = [
{ file = "gunicorn-20.1.0-py3-none-any.whl" , hash = "sha256:9dcc4547dbb1cb284accfb15ab5667a0e5d1881cc443e0677b4882a4067a807e" } ,
{ file = "gunicorn-20.1.0.tar.gz" , hash = "sha256:e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8" } ,
]
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-11-23 19:56:13 +00:00
{ file = "identify-2.4.0-py2.py3-none-any.whl" , hash = "sha256:eba31ca80258de6bb51453084bff4a923187cd2193b9c13710f2516ab30732cc" } ,
{ file = "identify-2.4.0.tar.gz" , hash = "sha256:a33ae873287e81651c7800ca309dc1f84679b763c9c8b30680e16fbfa82f0107" } ,
2020-09-16 07:41:53 +00:00
]
idna = [
2021-11-14 05:00:23 +00:00
{ file = "idna-3.3-py3-none-any.whl" , hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff" } ,
{ file = "idna-3.3.tar.gz" , hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d" } ,
2020-09-16 07:41:53 +00:00
]
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
]
2021-11-14 05:00:23 +00:00
importlib-resources = [
{ file = "importlib_resources-5.4.0-py3-none-any.whl" , hash = "sha256:33a95faed5fc19b4bc16b29a6eeae248a3fe69dd55d4d229d2b480e23eeaad45" } ,
{ file = "importlib_resources-5.4.0.tar.gz" , hash = "sha256:d756e2f85dd4de2ba89be0b21dba2a3bbec2e871a42a3a16719258a11f87506b" } ,
2020-09-16 07:41:53 +00:00
]
2021-11-14 05:00:23 +00:00
ipython = [
{ file = "ipython-7.29.0-py3-none-any.whl" , hash = "sha256:a658beaf856ce46bc453366d5dc6b2ddc6c481efd3540cb28aa3943819caac9f" } ,
{ file = "ipython-7.29.0.tar.gz" , hash = "sha256:4f69d7423a5a1972f6347ff233e38bbf4df6a150ef20fbb00c635442ac3060aa" } ,
2020-09-16 07:41:53 +00:00
]
2021-05-08 02:39:16 +00:00
isodate = [
{ file = "isodate-0.6.0-py2.py3-none-any.whl" , hash = "sha256:aa4d33c06640f5352aca96e4b81afd8ab3b47337cc12089822d6f322ac772c81" } ,
{ file = "isodate-0.6.0.tar.gz" , hash = "sha256:2e364a3d5759479cdb2d37cce6b9376ea504db2ff90252a2e5b7cc89cc9ff2d8" } ,
]
2020-09-16 07:41:53 +00:00
isort = [
2021-11-14 05:00:23 +00:00
{ file = "isort-5.10.1-py3-none-any.whl" , hash = "sha256:6f62d78e2f89b4500b080fe3a81690850cd254227f27f75c3a0c491a1f351ba7" } ,
{ file = "isort-5.10.1.tar.gz" , hash = "sha256:e8443a5e7a020e9d7f97f1d7d9cd17c88bcb3bc7e218bf9cf5095fe550be2951" } ,
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-11-23 19:56:13 +00:00
{ file = "jedi-0.18.1-py2.py3-none-any.whl" , hash = "sha256:637c9635fcf47945ceb91cd7f320234a7be540ded6f3e99a50cb6febdfd1ba8d" } ,
{ file = "jedi-0.18.1.tar.gz" , hash = "sha256:74137626a64a99c8eb6ae5832d99b3bdd7d29a3850fe2aa80a4126b2a7d949ab" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
jeepney = [
2021-11-14 05:00:23 +00:00
{ file = "jeepney-0.7.1-py3-none-any.whl" , hash = "sha256:1b5a0ea5c0e7b166b2f5895b91a08c14de8915afda4407fb5022a195224958ac" } ,
{ file = "jeepney-0.7.1.tar.gz" , hash = "sha256:fa9e232dfa0c498bd0b8a3a73b8d8a31978304dcef0515adc859d4e096f96f4f" } ,
2020-12-22 02:52:07 +00:00
]
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
]
2021-05-08 02:39:16 +00:00
jsonschema = [
2021-11-14 05:00:23 +00:00
{ file = "jsonschema-4.2.1-py3-none-any.whl" , hash = "sha256:2a0f162822a64d95287990481b45d82f096e99721c86534f48201b64ebca6e8c" } ,
{ file = "jsonschema-4.2.1.tar.gz" , hash = "sha256:390713469ae64b8a58698bb3cbc3859abe6925b565a973f87323ef21b09a27a8" } ,
2021-05-08 02:39:16 +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 = [
2021-11-14 05:00:23 +00:00
{ file = "MarkupSafe-2.0.1-cp310-cp310-macosx_10_9_universal2.whl" , hash = "sha256:d8446c54dc28c01e5a2dbac5a25f071f6653e6e40f3a8818e8b45d790fe6ef53" } ,
{ file = "MarkupSafe-2.0.1-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:36bc903cbb393720fad60fc28c10de6acf10dc6cc883f3e24ee4012371399a38" } ,
{ file = "MarkupSafe-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:2d7d807855b419fc2ed3e631034685db6079889a1f01d5d9dac950f764da3dad" } ,
{ file = "MarkupSafe-2.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:add36cb2dbb8b736611303cd3bfcee00afd96471b09cda130da3581cbdc56a6d" } ,
{ file = "MarkupSafe-2.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:168cd0a3642de83558a5153c8bd34f175a9a6e7f6dc6384b9655d2697312a646" } ,
{ file = "MarkupSafe-2.0.1-cp310-cp310-musllinux_1_1_aarch64.whl" , hash = "sha256:4dc8f9fb58f7364b63fd9f85013b780ef83c11857ae79f2feda41e270468dd9b" } ,
{ file = "MarkupSafe-2.0.1-cp310-cp310-musllinux_1_1_i686.whl" , hash = "sha256:20dca64a3ef2d6e4d5d615a3fd418ad3bde77a47ec8a23d984a12b5b4c74491a" } ,
{ file = "MarkupSafe-2.0.1-cp310-cp310-musllinux_1_1_x86_64.whl" , hash = "sha256:cdfba22ea2f0029c9261a4bd07e830a8da012291fbe44dc794e488b6c9bb353a" } ,
{ file = "MarkupSafe-2.0.1-cp310-cp310-win32.whl" , hash = "sha256:99df47edb6bda1249d3e80fdabb1dab8c08ef3975f69aed437cb69d0a5de1e28" } ,
{ file = "MarkupSafe-2.0.1-cp310-cp310-win_amd64.whl" , hash = "sha256:e0f138900af21926a02425cf736db95be9f4af72ba1bb21453432a07f6082134" } ,
{ file = "MarkupSafe-2.0.1-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:f9081981fe268bd86831e5c75f7de206ef275defcb82bc70740ae6dc507aee51" } ,
{ file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux1_i686.whl" , hash = "sha256:0955295dd5eec6cb6cc2fe1698f4c6d84af2e92de33fbcac4111913cd100a6ff" } ,
{ file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux1_x86_64.whl" , hash = "sha256:0446679737af14f45767963a1a9ef7620189912317d095f2d9ffa183a4d25d2b" } ,
{ file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux2010_i686.whl" , hash = "sha256:f826e31d18b516f653fe296d967d700fddad5901ae07c622bb3705955e1faa94" } ,
{ file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux2010_x86_64.whl" , hash = "sha256:fa130dd50c57d53368c9d59395cb5526eda596d3ffe36666cd81a44d56e48872" } ,
{ file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux2014_aarch64.whl" , hash = "sha256:905fec760bd2fa1388bb5b489ee8ee5f7291d692638ea5f67982d968366bef9f" } ,
{ file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:bf5d821ffabf0ef3533c39c518f3357b171a1651c1ff6827325e4489b0e46c3c" } ,
{ file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:0d4b31cc67ab36e3392bbf3862cfbadac3db12bdd8b02a2731f509ed5b829724" } ,
{ file = "MarkupSafe-2.0.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:baa1a4e8f868845af802979fcdbf0bb11f94f1cb7ced4c4b8a351bb60d108145" } ,
{ file = "MarkupSafe-2.0.1-cp36-cp36m-musllinux_1_1_aarch64.whl" , hash = "sha256:deb993cacb280823246a026e3b2d81c493c53de6acfd5e6bfe31ab3402bb37dd" } ,
{ file = "MarkupSafe-2.0.1-cp36-cp36m-musllinux_1_1_i686.whl" , hash = "sha256:63f3268ba69ace99cab4e3e3b5840b03340efed0948ab8f78d2fd87ee5442a4f" } ,
{ file = "MarkupSafe-2.0.1-cp36-cp36m-musllinux_1_1_x86_64.whl" , hash = "sha256:8d206346619592c6200148b01a2142798c989edcb9c896f9ac9722a99d4e77e6" } ,
{ file = "MarkupSafe-2.0.1-cp36-cp36m-win32.whl" , hash = "sha256:6c4ca60fa24e85fe25b912b01e62cb969d69a23a5d5867682dd3e80b5b02581d" } ,
{ file = "MarkupSafe-2.0.1-cp36-cp36m-win_amd64.whl" , hash = "sha256:b2f4bf27480f5e5e8ce285a8c8fd176c0b03e93dcc6646477d4630e83440c6a9" } ,
{ file = "MarkupSafe-2.0.1-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:0717a7390a68be14b8c793ba258e075c6f4ca819f15edfc2a3a027c823718567" } ,
{ file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux1_i686.whl" , hash = "sha256:6557b31b5e2c9ddf0de32a691f2312a32f77cd7681d8af66c2692efdbef84c18" } ,
{ file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux1_x86_64.whl" , hash = "sha256:49e3ceeabbfb9d66c3aef5af3a60cc43b85c33df25ce03d0031a608b0a8b2e3f" } ,
{ file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux2010_i686.whl" , hash = "sha256:d7f9850398e85aba693bb640262d3611788b1f29a79f0c93c565694658f4071f" } ,
{ file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux2010_x86_64.whl" , hash = "sha256:6a7fae0dd14cf60ad5ff42baa2e95727c3d81ded453457771d02b7d2b3f9c0c2" } ,
{ file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux2014_aarch64.whl" , hash = "sha256:b7f2d075102dc8c794cbde1947378051c4e5180d52d276987b8d28a3bd58c17d" } ,
{ file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:e9936f0b261d4df76ad22f8fee3ae83b60d7c3e871292cd42f40b81b70afae85" } ,
{ file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:2a7d351cbd8cfeb19ca00de495e224dea7e7d919659c2841bbb7f420ad03e2d6" } ,
{ file = "MarkupSafe-2.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:60bf42e36abfaf9aff1f50f52644b336d4f0a3fd6d8a60ca0d054ac9f713a864" } ,
{ file = "MarkupSafe-2.0.1-cp37-cp37m-musllinux_1_1_aarch64.whl" , hash = "sha256:d6c7ebd4e944c85e2c3421e612a7057a2f48d478d79e61800d81468a8d842207" } ,
{ file = "MarkupSafe-2.0.1-cp37-cp37m-musllinux_1_1_i686.whl" , hash = "sha256:f0567c4dc99f264f49fe27da5f735f414c4e7e7dd850cfd8e69f0862d7c74ea9" } ,
{ file = "MarkupSafe-2.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl" , hash = "sha256:89c687013cb1cd489a0f0ac24febe8c7a666e6e221b783e53ac50ebf68e45d86" } ,
{ file = "MarkupSafe-2.0.1-cp37-cp37m-win32.whl" , hash = "sha256:a30e67a65b53ea0a5e62fe23682cfe22712e01f453b95233b25502f7c61cb415" } ,
{ file = "MarkupSafe-2.0.1-cp37-cp37m-win_amd64.whl" , hash = "sha256:611d1ad9a4288cf3e3c16014564df047fe08410e628f89805e475368bd304914" } ,
{ file = "MarkupSafe-2.0.1-cp38-cp38-macosx_10_9_universal2.whl" , hash = "sha256:5bb28c636d87e840583ee3adeb78172efc47c8b26127267f54a9c0ec251d41a9" } ,
{ file = "MarkupSafe-2.0.1-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:be98f628055368795d818ebf93da628541e10b75b41c559fdf36d104c5787066" } ,
{ file = "MarkupSafe-2.0.1-cp38-cp38-manylinux1_i686.whl" , hash = "sha256:1d609f577dc6e1aa17d746f8bd3c31aa4d258f4070d61b2aa5c4166c1539de35" } ,
{ file = "MarkupSafe-2.0.1-cp38-cp38-manylinux1_x86_64.whl" , hash = "sha256:7d91275b0245b1da4d4cfa07e0faedd5b0812efc15b702576d103293e252af1b" } ,
{ file = "MarkupSafe-2.0.1-cp38-cp38-manylinux2010_i686.whl" , hash = "sha256:01a9b8ea66f1658938f65b93a85ebe8bc016e6769611be228d797c9d998dd298" } ,
{ file = "MarkupSafe-2.0.1-cp38-cp38-manylinux2010_x86_64.whl" , hash = "sha256:47ab1e7b91c098ab893b828deafa1203de86d0bc6ab587b160f78fe6c4011f75" } ,
{ file = "MarkupSafe-2.0.1-cp38-cp38-manylinux2014_aarch64.whl" , hash = "sha256:97383d78eb34da7e1fa37dd273c20ad4320929af65d156e35a5e2d89566d9dfb" } ,
{ file = "MarkupSafe-2.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:6fcf051089389abe060c9cd7caa212c707e58153afa2c649f00346ce6d260f1b" } ,
{ file = "MarkupSafe-2.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:5855f8438a7d1d458206a2466bf82b0f104a3724bf96a1c781ab731e4201731a" } ,
{ file = "MarkupSafe-2.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:3dd007d54ee88b46be476e293f48c85048603f5f516008bee124ddd891398ed6" } ,
{ file = "MarkupSafe-2.0.1-cp38-cp38-musllinux_1_1_aarch64.whl" , hash = "sha256:aca6377c0cb8a8253e493c6b451565ac77e98c2951c45f913e0b52facdcff83f" } ,
{ file = "MarkupSafe-2.0.1-cp38-cp38-musllinux_1_1_i686.whl" , hash = "sha256:04635854b943835a6ea959e948d19dcd311762c5c0c6e1f0e16ee57022669194" } ,
{ file = "MarkupSafe-2.0.1-cp38-cp38-musllinux_1_1_x86_64.whl" , hash = "sha256:6300b8454aa6930a24b9618fbb54b5a68135092bc666f7b06901f897fa5c2fee" } ,
{ file = "MarkupSafe-2.0.1-cp38-cp38-win32.whl" , hash = "sha256:023cb26ec21ece8dc3907c0e8320058b2e0cb3c55cf9564da612bc325bed5e64" } ,
{ file = "MarkupSafe-2.0.1-cp38-cp38-win_amd64.whl" , hash = "sha256:984d76483eb32f1bcb536dc27e4ad56bba4baa70be32fa87152832cdd9db0833" } ,
{ file = "MarkupSafe-2.0.1-cp39-cp39-macosx_10_9_universal2.whl" , hash = "sha256:2ef54abee730b502252bcdf31b10dacb0a416229b72c18b19e24a4509f273d26" } ,
{ file = "MarkupSafe-2.0.1-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:3c112550557578c26af18a1ccc9e090bfe03832ae994343cfdacd287db6a6ae7" } ,
{ file = "MarkupSafe-2.0.1-cp39-cp39-manylinux1_i686.whl" , hash = "sha256:53edb4da6925ad13c07b6d26c2a852bd81e364f95301c66e930ab2aef5b5ddd8" } ,
{ file = "MarkupSafe-2.0.1-cp39-cp39-manylinux1_x86_64.whl" , hash = "sha256:f5653a225f31e113b152e56f154ccbe59eeb1c7487b39b9d9f9cdb58e6c79dc5" } ,
{ file = "MarkupSafe-2.0.1-cp39-cp39-manylinux2010_i686.whl" , hash = "sha256:4efca8f86c54b22348a5467704e3fec767b2db12fc39c6d963168ab1d3fc9135" } ,
{ file = "MarkupSafe-2.0.1-cp39-cp39-manylinux2010_x86_64.whl" , hash = "sha256:ab3ef638ace319fa26553db0624c4699e31a28bb2a835c5faca8f8acf6a5a902" } ,
{ file = "MarkupSafe-2.0.1-cp39-cp39-manylinux2014_aarch64.whl" , hash = "sha256:f8ba0e8349a38d3001fae7eadded3f6606f0da5d748ee53cc1dab1d6527b9509" } ,
{ file = "MarkupSafe-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:c47adbc92fc1bb2b3274c4b3a43ae0e4573d9fbff4f54cd484555edbf030baf1" } ,
{ file = "MarkupSafe-2.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:37205cac2a79194e3750b0af2a5720d95f786a55ce7df90c3af697bfa100eaac" } ,
{ file = "MarkupSafe-2.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:1f2ade76b9903f39aa442b4aadd2177decb66525062db244b35d71d0ee8599b6" } ,
{ file = "MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_aarch64.whl" , hash = "sha256:4296f2b1ce8c86a6aea78613c34bb1a672ea0e3de9c6ba08a960efe0b0a09047" } ,
{ file = "MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_i686.whl" , hash = "sha256:9f02365d4e99430a12647f09b6cc8bab61a6564363f313126f775eb4f6ef798e" } ,
{ file = "MarkupSafe-2.0.1-cp39-cp39-musllinux_1_1_x86_64.whl" , hash = "sha256:5b6d930f030f8ed98e3e6c98ffa0652bdb82601e7a016ec2ab5d7ff23baa78d1" } ,
{ file = "MarkupSafe-2.0.1-cp39-cp39-win32.whl" , hash = "sha256:10f82115e21dc0dfec9ab5c0223652f7197feb168c940f3ef61563fc2d6beb74" } ,
{ file = "MarkupSafe-2.0.1-cp39-cp39-win_amd64.whl" , hash = "sha256:693ce3f9e70a6cf7d2fb9e6c9d8b204b6b39897a2c4a1aa65728d5ac97dcc1d8" } ,
{ file = "MarkupSafe-2.0.1.tar.gz" , hash = "sha256:594c67807fb16238b30c44bdf74f36c02cdf22d1c8cda91ef8a0ed8dabf5620a" } ,
2020-09-16 07:41:53 +00:00
]
2021-05-02 22:12:04 +00:00
matplotlib-inline = [
2021-11-14 05:00:23 +00:00
{ file = "matplotlib-inline-0.1.3.tar.gz" , hash = "sha256:a04bfba22e0d1395479f866853ec1ee28eea1485c1d69a6faf00dc3e24ff34ee" } ,
{ file = "matplotlib_inline-0.1.3-py3-none-any.whl" , hash = "sha256:aed605ba3b72462d64d475a21a9296f400a19c4f74a31b59103d2a99ffd5aa5c" } ,
2021-05-02 22:12:04 +00:00
]
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-11-14 05:00:23 +00:00
{ file = "more-itertools-8.11.0.tar.gz" , hash = "sha256:0a2fd25d343c08d7e7212071820e7e7ea2f41d8fb45d6bc8a00cd6ce3b7aab88" } ,
{ file = "more_itertools-8.11.0-py3-none-any.whl" , hash = "sha256:88afff98d83d08fe5e4049b81e2b54c06ebb6b3871a600040865c7a592061cbb" } ,
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
]
2021-05-08 02:39:16 +00:00
openapi-schema-validator = [
{ file = "openapi-schema-validator-0.1.5.tar.gz" , hash = "sha256:a4b2712020284cee880b4c55faa513fbc2f8f07f365deda6098f8ab943c9f0df" } ,
{ file = "openapi_schema_validator-0.1.5-py2-none-any.whl" , hash = "sha256:215b516d0942f4e8e2446cf3f7d4ff2ed71d102ebddcc30526d8a3f706ab1df6" } ,
{ file = "openapi_schema_validator-0.1.5-py3-none-any.whl" , hash = "sha256:b65d6c2242620bfe76d4c749b61cd9657e4528895a8f4fb6f916085b508ebd24" } ,
]
openapi-spec-validator = [
2021-11-14 05:00:23 +00:00
{ file = "openapi-spec-validator-0.3.1.tar.gz" , hash = "sha256:3d70e6592754799f7e77a45b98c6a91706bdd309a425169d17d8e92173e198a2" } ,
{ file = "openapi_spec_validator-0.3.1-py2-none-any.whl" , hash = "sha256:0a7da925bad4576f4518f77302c0b1990adb2fbcbe7d63fb4ed0de894cad8bdd" } ,
{ file = "openapi_spec_validator-0.3.1-py3-none-any.whl" , hash = "sha256:ba28b06e63274f2bc6de995a07fb572c657e534425b5baf68d9f7911efe6929f" } ,
2021-05-08 02:39:16 +00:00
]
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 = [
2021-11-14 05:00:23 +00:00
{ file = "pathspec-0.9.0-py2.py3-none-any.whl" , hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a" } ,
{ file = "pathspec-0.9.0.tar.gz" , hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1" } ,
2020-09-16 07:41:53 +00:00
]
pbr = [
2021-11-23 19:56:13 +00:00
{ file = "pbr-5.8.0-py2.py3-none-any.whl" , hash = "sha256:176e8560eaf61e127817ef93d8a844803abb27a4d4637f0ff3bb783129be2e0a" } ,
{ file = "pbr-5.8.0.tar.gz" , hash = "sha256:672d8ebee84921862110f23fcec2acea191ef58543d34dfe9ef3d9f13c31cddf" } ,
2020-09-16 07:41:53 +00:00
]
2020-09-21 23:38:52 +00:00
peewee = [
2021-11-14 05:00:23 +00:00
{ file = "peewee-3.14.8.tar.gz" , hash = "sha256:01bd7f734defb08d7a3346a0c0ca7011bc8d0d685934ec0e001b3371d522ec53" } ,
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" } ,
]
2021-11-14 05:00:23 +00:00
pillow = [
{ file = "Pillow-8.4.0-cp310-cp310-macosx_10_10_universal2.whl" , hash = "sha256:81f8d5c81e483a9442d72d182e1fb6dcb9723f289a57e8030811bac9ea3fef8d" } ,
{ file = "Pillow-8.4.0-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:3f97cfb1e5a392d75dd8b9fd274d205404729923840ca94ca45a0af57e13dbe6" } ,
{ file = "Pillow-8.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:eb9fc393f3c61f9054e1ed26e6fe912c7321af2f41ff49d3f83d05bacf22cc78" } ,
{ file = "Pillow-8.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:d82cdb63100ef5eedb8391732375e6d05993b765f72cb34311fab92103314649" } ,
{ file = "Pillow-8.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:62cc1afda735a8d109007164714e73771b499768b9bb5afcbbee9d0ff374b43f" } ,
{ file = "Pillow-8.4.0-cp310-cp310-win32.whl" , hash = "sha256:e3dacecfbeec9a33e932f00c6cd7996e62f53ad46fbe677577394aaa90ee419a" } ,
{ file = "Pillow-8.4.0-cp310-cp310-win_amd64.whl" , hash = "sha256:620582db2a85b2df5f8a82ddeb52116560d7e5e6b055095f04ad828d1b0baa39" } ,
{ file = "Pillow-8.4.0-cp36-cp36m-macosx_10_10_x86_64.whl" , hash = "sha256:1bc723b434fbc4ab50bb68e11e93ce5fb69866ad621e3c2c9bdb0cd70e345f55" } ,
{ file = "Pillow-8.4.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:72cbcfd54df6caf85cc35264c77ede902452d6df41166010262374155947460c" } ,
{ file = "Pillow-8.4.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:70ad9e5c6cb9b8487280a02c0ad8a51581dcbbe8484ce058477692a27c151c0a" } ,
{ file = "Pillow-8.4.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:25a49dc2e2f74e65efaa32b153527fc5ac98508d502fa46e74fa4fd678ed6645" } ,
{ file = "Pillow-8.4.0-cp36-cp36m-win32.whl" , hash = "sha256:93ce9e955cc95959df98505e4608ad98281fff037350d8c2671c9aa86bcf10a9" } ,
{ file = "Pillow-8.4.0-cp36-cp36m-win_amd64.whl" , hash = "sha256:2e4440b8f00f504ee4b53fe30f4e381aae30b0568193be305256b1462216feff" } ,
{ file = "Pillow-8.4.0-cp37-cp37m-macosx_10_10_x86_64.whl" , hash = "sha256:8c803ac3c28bbc53763e6825746f05cc407b20e4a69d0122e526a582e3b5e153" } ,
{ file = "Pillow-8.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:c8a17b5d948f4ceeceb66384727dde11b240736fddeda54ca740b9b8b1556b29" } ,
{ file = "Pillow-8.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:1394a6ad5abc838c5cd8a92c5a07535648cdf6d09e8e2d6df916dfa9ea86ead8" } ,
{ file = "Pillow-8.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:792e5c12376594bfcb986ebf3855aa4b7c225754e9a9521298e460e92fb4a488" } ,
{ file = "Pillow-8.4.0-cp37-cp37m-win32.whl" , hash = "sha256:d99ec152570e4196772e7a8e4ba5320d2d27bf22fdf11743dd882936ed64305b" } ,
{ file = "Pillow-8.4.0-cp37-cp37m-win_amd64.whl" , hash = "sha256:7b7017b61bbcdd7f6363aeceb881e23c46583739cb69a3ab39cb384f6ec82e5b" } ,
{ file = "Pillow-8.4.0-cp38-cp38-macosx_10_10_x86_64.whl" , hash = "sha256:d89363f02658e253dbd171f7c3716a5d340a24ee82d38aab9183f7fdf0cdca49" } ,
{ file = "Pillow-8.4.0-cp38-cp38-macosx_11_0_arm64.whl" , hash = "sha256:0a0956fdc5defc34462bb1c765ee88d933239f9a94bc37d132004775241a7585" } ,
{ file = "Pillow-8.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:5b7bb9de00197fb4261825c15551adf7605cf14a80badf1761d61e59da347779" } ,
{ file = "Pillow-8.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:72b9e656e340447f827885b8d7a15fc8c4e68d410dc2297ef6787eec0f0ea409" } ,
{ file = "Pillow-8.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:a5a4532a12314149d8b4e4ad8ff09dde7427731fcfa5917ff16d0291f13609df" } ,
{ file = "Pillow-8.4.0-cp38-cp38-win32.whl" , hash = "sha256:82aafa8d5eb68c8463b6e9baeb4f19043bb31fefc03eb7b216b51e6a9981ae09" } ,
{ file = "Pillow-8.4.0-cp38-cp38-win_amd64.whl" , hash = "sha256:066f3999cb3b070a95c3652712cffa1a748cd02d60ad7b4e485c3748a04d9d76" } ,
{ file = "Pillow-8.4.0-cp39-cp39-macosx_10_10_x86_64.whl" , hash = "sha256:5503c86916d27c2e101b7f71c2ae2cddba01a2cf55b8395b0255fd33fa4d1f1a" } ,
{ file = "Pillow-8.4.0-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:4acc0985ddf39d1bc969a9220b51d94ed51695d455c228d8ac29fcdb25810e6e" } ,
{ file = "Pillow-8.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:0b052a619a8bfcf26bd8b3f48f45283f9e977890263e4571f2393ed8898d331b" } ,
{ file = "Pillow-8.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:493cb4e415f44cd601fcec11c99836f707bb714ab03f5ed46ac25713baf0ff20" } ,
{ file = "Pillow-8.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:b8831cb7332eda5dc89b21a7bce7ef6ad305548820595033a4b03cf3091235ed" } ,
{ file = "Pillow-8.4.0-cp39-cp39-win32.whl" , hash = "sha256:5e9ac5f66616b87d4da618a20ab0a38324dbe88d8a39b55be8964eb520021e02" } ,
{ file = "Pillow-8.4.0-cp39-cp39-win_amd64.whl" , hash = "sha256:3eb1ce5f65908556c2d8685a8f0a6e989d887ec4057326f6c22b24e8a172c66b" } ,
{ file = "Pillow-8.4.0-pp36-pypy36_pp73-macosx_10_10_x86_64.whl" , hash = "sha256:ddc4d832a0f0b4c52fff973a0d44b6c99839a9d016fe4e6a1cb8f3eea96479c2" } ,
{ file = "Pillow-8.4.0-pp36-pypy36_pp73-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:9a3e5ddc44c14042f0844b8cf7d2cd455f6cc80fd7f5eefbe657292cf601d9ad" } ,
{ file = "Pillow-8.4.0-pp36-pypy36_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:c70e94281588ef053ae8998039610dbd71bc509e4acbc77ab59d7d2937b10698" } ,
{ file = "Pillow-8.4.0-pp37-pypy37_pp73-macosx_10_10_x86_64.whl" , hash = "sha256:3862b7256046fcd950618ed22d1d60b842e3a40a48236a5498746f21189afbbc" } ,
{ file = "Pillow-8.4.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:a4901622493f88b1a29bd30ec1a2f683782e57c3c16a2dbc7f2595ba01f639df" } ,
{ file = "Pillow-8.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:84c471a734240653a0ec91dec0996696eea227eafe72a33bd06c92697728046b" } ,
{ file = "Pillow-8.4.0-pp37-pypy37_pp73-win_amd64.whl" , hash = "sha256:244cf3b97802c34c41905d22810846802a3329ddcb93ccc432870243211c79fc" } ,
{ file = "Pillow-8.4.0.tar.gz" , hash = "sha256:b8e2f83c56e141920c39464b852de3719dfbfb6e3c99a2d8da0edf4fb33176ed" } ,
]
2020-12-22 02:52:07 +00:00
pkginfo = [
2021-11-23 19:56:13 +00:00
{ file = "pkginfo-1.8.1-py2.py3-none-any.whl" , hash = "sha256:bb55a6c017d50f2faea5153abc7b05a750e7ea7ae2cbb7fb3ad6f1dcf8d40988" } ,
{ file = "pkginfo-1.8.1.tar.gz" , hash = "sha256:65175ffa2c807220673a41c371573ac9a1ea1b19ffd5eef916278f428319934f" } ,
2021-11-14 05:00:23 +00:00
]
platformdirs = [
{ file = "platformdirs-2.4.0-py3-none-any.whl" , hash = "sha256:8868bbe3c3c80d42f20156f22e7131d2fb321f5bc86a2a345375c6481a67021d" } ,
{ file = "platformdirs-2.4.0.tar.gz" , hash = "sha256:367a5e80b3d04d2428ffa76d33f124cf11e8fff2acdaa9b43d545f5c7d661ef2" } ,
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-11-14 05:00:23 +00:00
{ file = "poetry-1.1.11-py2.py3-none-any.whl" , hash = "sha256:628e2a933c9f7c28fa0edbee09f9e2e6b25301e610929b5414f3d55ed40fc712" } ,
{ file = "poetry-1.1.11.tar.gz" , hash = "sha256:7d7d22f55fbebb830cc85b1c69cd7a91fd85f49e5396e7a14b953645a470f69e" } ,
2020-12-22 02:52:07 +00:00
]
poetry-core = [
2021-11-14 05:00:23 +00:00
{ file = "poetry-core-1.0.7.tar.gz" , hash = "sha256:98c11c755a16ef6c5673c22ca94a3802a7df4746a0853a70b6fae8b9f5cac206" } ,
{ file = "poetry_core-1.0.7-py2.py3-none-any.whl" , hash = "sha256:4f8a7f5390d772f42c4c4c3f188e6424b802cb4b57466c6633a1b9ac36f18a43" } ,
2020-12-22 02:52:07 +00:00
]
2020-09-16 07:41:53 +00:00
pre-commit = [
2021-11-14 05:00:23 +00:00
{ file = "pre_commit-2.15.0-py2.py3-none-any.whl" , hash = "sha256:a4ed01000afcb484d9eb8d504272e642c4c4099bbad3a6b27e519bd6a3e928a6" } ,
{ file = "pre_commit-2.15.0.tar.gz" , hash = "sha256:3c25add78dbdfb6a28a651780d5c311ac40dd17f160eb3954a0c59da40a505a7" } ,
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-11-14 05:00:23 +00:00
{ file = "prompt_toolkit-3.0.22-py3-none-any.whl" , hash = "sha256:48d85cdca8b6c4f16480c7ce03fd193666b62b0a21667ca56b4bb5ad679d1170" } ,
{ file = "prompt_toolkit-3.0.22.tar.gz" , hash = "sha256:449f333dd120bd01f5d296a8ce1452114ba3a71fae7288d2f0ae2c918764fa72" } ,
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 = [
2021-11-14 05:00:23 +00:00
{ file = "py-1.11.0-py2.py3-none-any.whl" , hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378" } ,
{ file = "py-1.11.0.tar.gz" , hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
pycparser = [
2021-11-14 05:00:23 +00:00
{ file = "pycparser-2.21-py2.py3-none-any.whl" , hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9" } ,
{ file = "pycparser-2.21.tar.gz" , hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206" } ,
2020-12-22 02:52:07 +00:00
]
2020-09-16 07:41:53 +00:00
pygments = [
2021-11-14 05:00:23 +00:00
{ file = "Pygments-2.10.0-py3-none-any.whl" , hash = "sha256:b8e67fe6af78f492b3c4b3e2970c0624cbf08beb1e493b2c99b9fa1b67a20380" } ,
{ file = "Pygments-2.10.0.tar.gz" , hash = "sha256:f398865f7eb6874156579fdf36bc840a03cab64d1cde9e93d68f46a425ec52c6" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
pylev = [
2021-11-14 05:00:23 +00:00
{ file = "pylev-1.4.0-py2.py3-none-any.whl" , hash = "sha256:7b2e2aa7b00e05bb3f7650eb506fc89f474f70493271a35c242d9a92188ad3dd" } ,
{ file = "pylev-1.4.0.tar.gz" , hash = "sha256:9e77e941042ad3a4cc305dcdf2b2dec1aec2fbe3dd9015d2698ad02b173006d1" } ,
2020-12-22 02:52:07 +00:00
]
2020-09-16 07:41:53 +00:00
pylint = [
2021-11-14 05:00:23 +00:00
{ file = "pylint-2.11.1-py3-none-any.whl" , hash = "sha256:0f358e221c45cbd4dad2a1e4b883e75d28acdcccd29d40c76eb72b307269b126" } ,
{ file = "pylint-2.11.1.tar.gz" , hash = "sha256:2c9843fff1a88ca0ad98a256806c82c5a8f86086e7ccbdb93297d86c3f90c436" } ,
2020-09-16 07:41:53 +00:00
]
pyparsing = [
2021-11-14 05:00:23 +00:00
{ file = "pyparsing-3.0.6-py3-none-any.whl" , hash = "sha256:04ff808a5b90911829c55c4e26f75fa5ca8a2f5f36aa3a51f68e27033341d3e4" } ,
{ file = "pyparsing-3.0.6.tar.gz" , hash = "sha256:d9bdec0013ef1eb5a84ab39a3b3868911598afa494f5faa038647101504e2b81" } ,
2020-09-16 07:41:53 +00:00
]
2021-05-08 02:39:16 +00:00
pyrsistent = [
2021-11-14 05:00:23 +00:00
{ file = "pyrsistent-0.18.0-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:f4c8cabb46ff8e5d61f56a037974228e978f26bfefce4f61a4b1ac0ba7a2ab72" } ,
{ file = "pyrsistent-0.18.0-cp36-cp36m-manylinux1_i686.whl" , hash = "sha256:da6e5e818d18459fa46fac0a4a4e543507fe1110e808101277c5a2b5bab0cd2d" } ,
{ file = "pyrsistent-0.18.0-cp36-cp36m-manylinux1_x86_64.whl" , hash = "sha256:5e4395bbf841693eaebaa5bb5c8f5cdbb1d139e07c975c682ec4e4f8126e03d2" } ,
{ file = "pyrsistent-0.18.0-cp36-cp36m-win32.whl" , hash = "sha256:527be2bfa8dc80f6f8ddd65242ba476a6c4fb4e3aedbf281dfbac1b1ed4165b1" } ,
{ file = "pyrsistent-0.18.0-cp36-cp36m-win_amd64.whl" , hash = "sha256:2aaf19dc8ce517a8653746d98e962ef480ff34b6bc563fc067be6401ffb457c7" } ,
{ file = "pyrsistent-0.18.0-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:58a70d93fb79dc585b21f9d72487b929a6fe58da0754fa4cb9f279bb92369396" } ,
{ file = "pyrsistent-0.18.0-cp37-cp37m-manylinux1_i686.whl" , hash = "sha256:4916c10896721e472ee12c95cdc2891ce5890898d2f9907b1b4ae0f53588b710" } ,
{ file = "pyrsistent-0.18.0-cp37-cp37m-manylinux1_x86_64.whl" , hash = "sha256:73ff61b1411e3fb0ba144b8f08d6749749775fe89688093e1efef9839d2dcc35" } ,
{ file = "pyrsistent-0.18.0-cp37-cp37m-win32.whl" , hash = "sha256:b29b869cf58412ca5738d23691e96d8aff535e17390128a1a52717c9a109da4f" } ,
{ file = "pyrsistent-0.18.0-cp37-cp37m-win_amd64.whl" , hash = "sha256:097b96f129dd36a8c9e33594e7ebb151b1515eb52cceb08474c10a5479e799f2" } ,
{ file = "pyrsistent-0.18.0-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:772e94c2c6864f2cd2ffbe58bb3bdefbe2a32afa0acb1a77e472aac831f83427" } ,
{ file = "pyrsistent-0.18.0-cp38-cp38-manylinux1_i686.whl" , hash = "sha256:c1a9ff320fa699337e05edcaae79ef8c2880b52720bc031b219e5b5008ebbdef" } ,
{ file = "pyrsistent-0.18.0-cp38-cp38-manylinux1_x86_64.whl" , hash = "sha256:cd3caef37a415fd0dae6148a1b6957a8c5f275a62cca02e18474608cb263640c" } ,
{ file = "pyrsistent-0.18.0-cp38-cp38-win32.whl" , hash = "sha256:e79d94ca58fcafef6395f6352383fa1a76922268fa02caa2272fff501c2fdc78" } ,
{ file = "pyrsistent-0.18.0-cp38-cp38-win_amd64.whl" , hash = "sha256:a0c772d791c38bbc77be659af29bb14c38ced151433592e326361610250c605b" } ,
{ file = "pyrsistent-0.18.0-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:d5ec194c9c573aafaceebf05fc400656722793dac57f254cd4741f3c27ae57b4" } ,
{ file = "pyrsistent-0.18.0-cp39-cp39-manylinux1_i686.whl" , hash = "sha256:6b5eed00e597b5b5773b4ca30bd48a5774ef1e96f2a45d105db5b4ebb4bca680" } ,
{ file = "pyrsistent-0.18.0-cp39-cp39-manylinux1_x86_64.whl" , hash = "sha256:48578680353f41dca1ca3dc48629fb77dfc745128b56fc01096b2530c13fd426" } ,
{ file = "pyrsistent-0.18.0-cp39-cp39-win32.whl" , hash = "sha256:f3ef98d7b76da5eb19c37fda834d50262ff9167c65658d1d8f974d2e4d90676b" } ,
{ file = "pyrsistent-0.18.0-cp39-cp39-win_amd64.whl" , hash = "sha256:404e1f1d254d314d55adb8d87f4f465c8693d6f902f67eb6ef5b4526dc58e6ea" } ,
{ file = "pyrsistent-0.18.0.tar.gz" , hash = "sha256:773c781216f8c2900b42a7b638d5b517bb134ae1acbebe4d1e8f1f41ea60eb4b" } ,
2021-05-08 02:39:16 +00:00
]
2020-09-16 07:41:53 +00:00
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-11-14 05:00:23 +00:00
{ file = "pytest-cov-2.12.1.tar.gz" , hash = "sha256:261ceeb8c227b726249b376b8526b600f38667ee314f910353fa318caa01f4d7" } ,
{ file = "pytest_cov-2.12.1-py2.py3-none-any.whl" , hash = "sha256:261bb9e47e65bd099c89c3edf92972865210c36813f80ede5277dceb77a4a62a" } ,
2020-09-16 07:41:53 +00:00
]
pytz = [
2021-11-14 05:00:23 +00:00
{ file = "pytz-2021.3-py2.py3-none-any.whl" , hash = "sha256:3672058bc3453457b622aab7a1c3bfd5ab0bdae451512f6cf25f64ed37f5b87c" } ,
{ file = "pytz-2021.3.tar.gz" , hash = "sha256:acad2d8b20a1af07d4e4c9d2e9285c5ed9104354062f275f3fcd88dcef4f1326" } ,
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-11-14 05:00:23 +00:00
{ file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53" } ,
{ file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c" } ,
{ file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc" } ,
{ file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b" } ,
{ file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5" } ,
{ file = "PyYAML-6.0-cp310-cp310-win32.whl" , hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513" } ,
{ file = "PyYAML-6.0-cp310-cp310-win_amd64.whl" , hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a" } ,
{ file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86" } ,
{ file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f" } ,
{ file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92" } ,
{ file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4" } ,
{ file = "PyYAML-6.0-cp36-cp36m-win32.whl" , hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293" } ,
{ file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl" , hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57" } ,
{ file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c" } ,
{ file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0" } ,
{ file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4" } ,
{ file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9" } ,
{ file = "PyYAML-6.0-cp37-cp37m-win32.whl" , hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737" } ,
{ file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl" , hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d" } ,
{ file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b" } ,
{ file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba" } ,
{ file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34" } ,
{ file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287" } ,
{ file = "PyYAML-6.0-cp38-cp38-win32.whl" , hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78" } ,
{ file = "PyYAML-6.0-cp38-cp38-win_amd64.whl" , hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07" } ,
{ file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b" } ,
{ file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174" } ,
{ file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803" } ,
{ file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3" } ,
{ file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0" } ,
{ file = "PyYAML-6.0-cp39-cp39-win32.whl" , hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb" } ,
{ file = "PyYAML-6.0-cp39-cp39-win_amd64.whl" , hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c" } ,
{ file = "PyYAML-6.0.tar.gz" , hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2" } ,
2020-09-16 07:41:53 +00:00
]
regex = [
2021-11-14 05:00:23 +00:00
{ file = "regex-2021.11.10-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:9345b6f7ee578bad8e475129ed40123d265464c4cfead6c261fd60fc9de00bcf" } ,
{ file = "regex-2021.11.10-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:416c5f1a188c91e3eb41e9c8787288e707f7d2ebe66e0a6563af280d9b68478f" } ,
{ file = "regex-2021.11.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:e0538c43565ee6e703d3a7c3bdfe4037a5209250e8502c98f20fea6f5fdf2965" } ,
{ file = "regex-2021.11.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:7ee1227cf08b6716c85504aebc49ac827eb88fcc6e51564f010f11a406c0a667" } ,
{ file = "regex-2021.11.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:6650f16365f1924d6014d2ea770bde8555b4a39dc9576abb95e3cd1ff0263b36" } ,
{ file = "regex-2021.11.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:30ab804ea73972049b7a2a5c62d97687d69b5a60a67adca07eb73a0ddbc9e29f" } ,
{ file = "regex-2021.11.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:68a067c11463de2a37157930d8b153005085e42bcb7ad9ca562d77ba7d1404e0" } ,
{ file = "regex-2021.11.10-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:162abfd74e88001d20cb73ceaffbfe601469923e875caf9118333b1a4aaafdc4" } ,
{ file = "regex-2021.11.10-cp310-cp310-win32.whl" , hash = "sha256:98ba568e8ae26beb726aeea2273053c717641933836568c2a0278a84987b2a1a" } ,
{ file = "regex-2021.11.10-cp310-cp310-win_amd64.whl" , hash = "sha256:780b48456a0f0ba4d390e8b5f7c661fdd218934388cde1a974010a965e200e12" } ,
{ file = "regex-2021.11.10-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:dba70f30fd81f8ce6d32ddeef37d91c8948e5d5a4c63242d16a2b2df8143aafc" } ,
{ file = "regex-2021.11.10-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:e1f54b9b4b6c53369f40028d2dd07a8c374583417ee6ec0ea304e710a20f80a0" } ,
{ file = "regex-2021.11.10-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:fbb9dc00e39f3e6c0ef48edee202f9520dafb233e8b51b06b8428cfcb92abd30" } ,
{ file = "regex-2021.11.10-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:666abff54e474d28ff42756d94544cdfd42e2ee97065857413b72e8a2d6a6345" } ,
{ file = "regex-2021.11.10-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:5537f71b6d646f7f5f340562ec4c77b6e1c915f8baae822ea0b7e46c1f09b733" } ,
{ file = "regex-2021.11.10-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:ed2e07c6a26ed4bea91b897ee2b0835c21716d9a469a96c3e878dc5f8c55bb23" } ,
{ file = "regex-2021.11.10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:ca5f18a75e1256ce07494e245cdb146f5a9267d3c702ebf9b65c7f8bd843431e" } ,
{ file = "regex-2021.11.10-cp36-cp36m-win32.whl" , hash = "sha256:93a5051fcf5fad72de73b96f07d30bc29665697fb8ecdfbc474f3452c78adcf4" } ,
{ file = "regex-2021.11.10-cp36-cp36m-win_amd64.whl" , hash = "sha256:b483c9d00a565633c87abd0aaf27eb5016de23fed952e054ecc19ce32f6a9e7e" } ,
{ file = "regex-2021.11.10-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:fff55f3ce50a3ff63ec8e2a8d3dd924f1941b250b0aac3d3d42b687eeff07a8e" } ,
{ file = "regex-2021.11.10-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:e32d2a2b02ccbef10145df9135751abea1f9f076e67a4e261b05f24b94219e36" } ,
{ file = "regex-2021.11.10-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:53db2c6be8a2710b359bfd3d3aa17ba38f8aa72a82309a12ae99d3c0c3dcd74d" } ,
{ file = "regex-2021.11.10-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:2207ae4f64ad3af399e2d30dde66f0b36ae5c3129b52885f1bffc2f05ec505c8" } ,
{ file = "regex-2021.11.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:d5ca078bb666c4a9d1287a379fe617a6dccd18c3e8a7e6c7e1eb8974330c626a" } ,
{ file = "regex-2021.11.10-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:dd33eb9bdcfbabab3459c9ee651d94c842bc8a05fabc95edf4ee0c15a072495e" } ,
{ file = "regex-2021.11.10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:05b7d6d7e64efe309972adab77fc2af8907bb93217ec60aa9fe12a0dad35874f" } ,
{ file = "regex-2021.11.10-cp37-cp37m-win32.whl" , hash = "sha256:e71255ba42567d34a13c03968736c5d39bb4a97ce98188fafb27ce981115beec" } ,
{ file = "regex-2021.11.10-cp37-cp37m-win_amd64.whl" , hash = "sha256:07856afef5ffcc052e7eccf3213317fbb94e4a5cd8177a2caa69c980657b3cb4" } ,
{ file = "regex-2021.11.10-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:ba05430e819e58544e840a68b03b28b6d328aff2e41579037e8bab7653b37d83" } ,
{ file = "regex-2021.11.10-cp38-cp38-macosx_11_0_arm64.whl" , hash = "sha256:7f301b11b9d214f83ddaf689181051e7f48905568b0c7017c04c06dfd065e244" } ,
{ file = "regex-2021.11.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:4aaa4e0705ef2b73dd8e36eeb4c868f80f8393f5f4d855e94025ce7ad8525f50" } ,
{ file = "regex-2021.11.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:788aef3549f1924d5c38263104dae7395bf020a42776d5ec5ea2b0d3d85d6646" } ,
{ file = "regex-2021.11.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:f8af619e3be812a2059b212064ea7a640aff0568d972cd1b9e920837469eb3cb" } ,
{ file = "regex-2021.11.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:85bfa6a5413be0ee6c5c4a663668a2cad2cbecdee367630d097d7823041bdeec" } ,
{ file = "regex-2021.11.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:f23222527b307970e383433daec128d769ff778d9b29343fb3496472dc20dabe" } ,
{ file = "regex-2021.11.10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:da1a90c1ddb7531b1d5ff1e171b4ee61f6345119be7351104b67ff413843fe94" } ,
{ file = "regex-2021.11.10-cp38-cp38-win32.whl" , hash = "sha256:0617383e2fe465732af4509e61648b77cbe3aee68b6ac8c0b6fe934db90be5cc" } ,
{ file = "regex-2021.11.10-cp38-cp38-win_amd64.whl" , hash = "sha256:a3feefd5e95871872673b08636f96b61ebef62971eab044f5124fb4dea39919d" } ,
{ file = "regex-2021.11.10-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:f7f325be2804246a75a4f45c72d4ce80d2443ab815063cdf70ee8fb2ca59ee1b" } ,
{ file = "regex-2021.11.10-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:537ca6a3586931b16a85ac38c08cc48f10fc870a5b25e51794c74df843e9966d" } ,
{ file = "regex-2021.11.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:eef2afb0fd1747f33f1ee3e209bce1ed582d1896b240ccc5e2697e3275f037c7" } ,
{ file = "regex-2021.11.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:432bd15d40ed835a51617521d60d0125867f7b88acf653e4ed994a1f8e4995dc" } ,
{ file = "regex-2021.11.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:b43c2b8a330a490daaef5a47ab114935002b13b3f9dc5da56d5322ff218eeadb" } ,
{ file = "regex-2021.11.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:962b9a917dd7ceacbe5cd424556914cb0d636001e393b43dc886ba31d2a1e449" } ,
{ file = "regex-2021.11.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:fa8c626d6441e2d04b6ee703ef2d1e17608ad44c7cb75258c09dd42bacdfc64b" } ,
{ file = "regex-2021.11.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:3c5fb32cc6077abad3bbf0323067636d93307c9fa93e072771cf9a64d1c0f3ef" } ,
{ file = "regex-2021.11.10-cp39-cp39-win32.whl" , hash = "sha256:3b5df18db1fccd66de15aa59c41e4f853b5df7550723d26aa6cb7f40e5d9da5a" } ,
{ file = "regex-2021.11.10-cp39-cp39-win_amd64.whl" , hash = "sha256:83ee89483672b11f8952b158640d0c0ff02dc43d9cb1b70c1564b49abe92ce29" } ,
{ file = "regex-2021.11.10.tar.gz" , hash = "sha256:f341ee2df0999bfdf7a95e448075effe0db212a59387de1a70690e4acb03d4c6" } ,
2020-09-16 07:41:53 +00:00
]
reorder-python-imports = [
2021-11-14 05:00:23 +00:00
{ file = "reorder_python_imports-2.6.0-py2.py3-none-any.whl" , hash = "sha256:54a3afd594a3959b10f7eb8b54ef453eb2b5176eb7b01c111cb1893ff9a2c685" } ,
{ file = "reorder_python_imports-2.6.0.tar.gz" , hash = "sha256:f4dc03142bdb57625e64299aea80e9055ce0f8b719f8f19c217a487c9fa9379e" } ,
2020-09-16 07:41:53 +00:00
]
requests = [
2021-11-14 05:00:23 +00:00
{ file = "requests-2.26.0-py2.py3-none-any.whl" , hash = "sha256:6c1246513ecd5ecd4528a0906f910e8f0f9c6b8ec72030dc9fd154dc1a6efd24" } ,
{ file = "requests-2.26.0.tar.gz" , hash = "sha256:b8aa58f8cf793ffd8782d3d8cb19e66ef36f7aba4353eec859e74678b01b07a7" } ,
2020-12-22 02:18:46 +00:00
]
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" = [
2021-11-14 05:00:23 +00:00
{ file = "ruamel.yaml.clib-0.2.6-cp35-cp35m-macosx_10_6_intel.whl" , hash = "sha256:cfdb9389d888c5b74af297e51ce357b800dd844898af9d4a547ffc143fa56751" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp35-cp35m-manylinux1_x86_64.whl" , hash = "sha256:7b2927e92feb51d830f531de4ccb11b320255ee95e791022555971c466af4527" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp35-cp35m-win32.whl" , hash = "sha256:ada3f400d9923a190ea8b59c8f60680c4ef8a4b0dfae134d2f2ff68429adfab5" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp35-cp35m-win_amd64.whl" , hash = "sha256:de9c6b8a1ba52919ae919f3ae96abb72b994dd0350226e28f3686cb4f142165c" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:d67f273097c368265a7b81e152e07fb90ed395df6e552b9fa858c6d2c9f42502" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-manylinux1_x86_64.whl" , hash = "sha256:72a2b8b2ff0a627496aad76f37a652bcef400fd861721744201ef1b45199ab78" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-win32.whl" , hash = "sha256:9efef4aab5353387b07f6b22ace0867032b900d8e91674b5d8ea9150db5cae94" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp36-cp36m-win_amd64.whl" , hash = "sha256:846fc8336443106fe23f9b6d6b8c14a53d38cef9a375149d61f99d78782ea468" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:0847201b767447fc33b9c235780d3aa90357d20dd6108b92be544427bea197dd" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-manylinux1_x86_64.whl" , hash = "sha256:78988ed190206672da0f5d50c61afef8f67daa718d614377dcd5e3ed85ab4a99" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-win32.whl" , hash = "sha256:a49e0161897901d1ac9c4a79984b8410f450565bbad64dbfcbf76152743a0cdb" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp37-cp37m-win_amd64.whl" , hash = "sha256:bf75d28fa071645c529b5474a550a44686821decebdd00e21127ef1fd566eabe" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:a32f8d81ea0c6173ab1b3da956869114cae53ba1e9f72374032e33ba3118c233" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp38-cp38-manylinux1_x86_64.whl" , hash = "sha256:7f7ecb53ae6848f959db6ae93bdff1740e651809780822270eab111500842a84" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp38-cp38-win32.whl" , hash = "sha256:89221ec6d6026f8ae859c09b9718799fea22c0e8da8b766b0b2c9a9ba2db326b" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp38-cp38-win_amd64.whl" , hash = "sha256:31ea73e564a7b5fbbe8188ab8b334393e06d997914a4e184975348f204790277" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:dc6a613d6c74eef5a14a214d433d06291526145431c3b964f5e16529b1842bed" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp39-cp39-manylinux1_x86_64.whl" , hash = "sha256:1866cf2c284a03b9524a5cc00daca56d80057c5ce3cdc86a52020f4c720856f0" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp39-cp39-win32.whl" , hash = "sha256:3fb9575a5acd13031c57a62cc7823e5d2ff8bc3835ba4d94b921b4e6ee664104" } ,
{ file = "ruamel.yaml.clib-0.2.6-cp39-cp39-win_amd64.whl" , hash = "sha256:825d5fccef6da42f3c8eccd4281af399f21c02b32d98e113dbc631ea6a6ecbc7" } ,
{ file = "ruamel.yaml.clib-0.2.6.tar.gz" , hash = "sha256:4ff604ce439abb20794f05613c374759ce10e3595d1867764dd1ae675b85acbd" } ,
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-11-14 05:00:23 +00:00
{ file = "smmap-5.0.0-py3-none-any.whl" , hash = "sha256:2aba19d6a040e78d8b09de5c57e96207b09ed71d8e55ce0959eeee6c8e190d94" } ,
{ file = "smmap-5.0.0.tar.gz" , hash = "sha256:c840e62059cd3be204b0c9c9f74be2c09d5648eddd4580d9314c3ecde0b30936" } ,
2020-09-16 07:41:53 +00:00
]
stevedore = [
2021-11-14 05:00:23 +00:00
{ file = "stevedore-3.5.0-py3-none-any.whl" , hash = "sha256:a547de73308fd7e90075bb4d301405bebf705292fa90a90fc3bcf9133f58616c" } ,
{ file = "stevedore-3.5.0.tar.gz" , hash = "sha256:f40253887d8712eaa2bb0ea3830374416736dc8ec0e22f5a65092c1174c44335" } ,
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
]
2021-11-14 05:00:23 +00:00
tomli = [
{ file = "tomli-1.2.2-py3-none-any.whl" , hash = "sha256:f04066f68f5554911363063a30b108d2b5a5b1a010aa8b6132af78489fe3aade" } ,
{ file = "tomli-1.2.2.tar.gz" , hash = "sha256:c6ce0015eb38820eaf32b5db832dbc26deb3dd427bd5f6556cf0acac2c214fee" } ,
]
2020-12-22 02:52:07 +00:00
tomlkit = [
2021-11-14 05:00:23 +00:00
{ file = "tomlkit-0.7.2-py2.py3-none-any.whl" , hash = "sha256:173ad840fa5d2aac140528ca1933c29791b79a374a0861a80347f42ec9328117" } ,
{ file = "tomlkit-0.7.2.tar.gz" , hash = "sha256:d7a454f319a7e9bd2e249f239168729327e4dd2d27b17dc68be264ad1ce36754" } ,
2020-12-22 02:52:07 +00:00
]
2020-09-16 07:41:53 +00:00
tox = [
2021-11-14 05:00:23 +00:00
{ file = "tox-3.24.4-py2.py3-none-any.whl" , hash = "sha256:5e274227a53dc9ef856767c21867377ba395992549f02ce55eb549f9fb9a8d10" } ,
{ file = "tox-3.24.4.tar.gz" , hash = "sha256:c30b57fa2477f1fb7c36aa1d83292d5c2336cd0018119e1b1c17340e2c2708ca" } ,
2020-09-16 07:41:53 +00:00
]
2020-12-22 02:52:07 +00:00
tox-poetry-installer = [
2021-10-29 03:17:00 +00:00
{ file = "tox-poetry-installer-0.8.2.tar.gz" , hash = "sha256:1a94f0d7783bf513280b77ba5353232a11e74d232dff039502232a4738694af2" } ,
{ file = "tox_poetry_installer-0.8.2-py3-none-any.whl" , hash = "sha256:f7dffc4397ae9c193b40d9f40df3f67fc3a6869f4604458b01f4eabb5d0de08a" } ,
2020-12-22 02:52:07 +00:00
]
2020-09-16 07:41:53 +00:00
traitlets = [
2021-11-14 05:00:23 +00:00
{ file = "traitlets-5.1.1-py3-none-any.whl" , hash = "sha256:2d313cc50a42cd6c277e7d7dc8d4d7fedd06a2c215f78766ae7b1a66277e0033" } ,
{ file = "traitlets-5.1.1.tar.gz" , hash = "sha256:059f456c5a7c1c82b98c2e8c799f39c9b8128f6d0d46941ee118daace9eb70c7" } ,
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-11-23 19:56:13 +00:00
{ file = "typing_extensions-4.0.0-py3-none-any.whl" , hash = "sha256:829704698b22e13ec9eaf959122315eabb370b0884400e9818334d8b677023d9" } ,
{ file = "typing_extensions-4.0.0.tar.gz" , hash = "sha256:2cdf80e4e04866a9b3689a51869016d36db0814d84b8d8a568d22781d45d27ed" } ,
2020-09-16 07:41:53 +00:00
]
urllib3 = [
2021-11-14 05:00:23 +00:00
{ file = "urllib3-1.26.7-py2.py3-none-any.whl" , hash = "sha256:c4fdf4019605b6e5423637e01bc9fe4daef873709a7973e195ceba0a62bbc844" } ,
{ file = "urllib3-1.26.7.tar.gz" , hash = "sha256:4987c65554f7a2dbf30c18fd48778ef124af6fab771a377103da0585e2336ece" } ,
2020-09-16 07:41:53 +00:00
]
virtualenv = [
2021-11-14 05:00:23 +00:00
{ file = "virtualenv-20.10.0-py2.py3-none-any.whl" , hash = "sha256:4b02e52a624336eece99c96e3ab7111f469c24ba226a53ec474e8e787b365814" } ,
{ file = "virtualenv-20.10.0.tar.gz" , hash = "sha256:576d05b46eace16a9c348085f7d0dc8ef28713a2cabaa1cf0aea41e8f12c9218" } ,
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 = [
2021-11-14 05:00:23 +00:00
{ 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-18 02:22:48 +00:00
]
2020-09-16 07:41:53 +00:00
wrapt = [
2021-11-14 05:00:23 +00:00
{ file = "wrapt-1.13.3-cp27-cp27m-macosx_10_9_x86_64.whl" , hash = "sha256:e05e60ff3b2b0342153be4d1b597bbcfd8330890056b9619f4ad6b8d5c96a81a" } ,
{ file = "wrapt-1.13.3-cp27-cp27m-manylinux1_i686.whl" , hash = "sha256:85148f4225287b6a0665eef08a178c15097366d46b210574a658c1ff5b377489" } ,
{ file = "wrapt-1.13.3-cp27-cp27m-manylinux1_x86_64.whl" , hash = "sha256:2dded5496e8f1592ec27079b28b6ad2a1ef0b9296d270f77b8e4a3a796cf6909" } ,
{ file = "wrapt-1.13.3-cp27-cp27m-manylinux2010_i686.whl" , hash = "sha256:e94b7d9deaa4cc7bac9198a58a7240aaf87fe56c6277ee25fa5b3aa1edebd229" } ,
{ file = "wrapt-1.13.3-cp27-cp27m-manylinux2010_x86_64.whl" , hash = "sha256:498e6217523111d07cd67e87a791f5e9ee769f9241fcf8a379696e25806965af" } ,
{ file = "wrapt-1.13.3-cp27-cp27mu-manylinux1_i686.whl" , hash = "sha256:ec7e20258ecc5174029a0f391e1b948bf2906cd64c198a9b8b281b811cbc04de" } ,
{ file = "wrapt-1.13.3-cp27-cp27mu-manylinux1_x86_64.whl" , hash = "sha256:87883690cae293541e08ba2da22cacaae0a092e0ed56bbba8d018cc486fbafbb" } ,
{ file = "wrapt-1.13.3-cp27-cp27mu-manylinux2010_i686.whl" , hash = "sha256:f99c0489258086308aad4ae57da9e8ecf9e1f3f30fa35d5e170b4d4896554d80" } ,
{ file = "wrapt-1.13.3-cp27-cp27mu-manylinux2010_x86_64.whl" , hash = "sha256:6a03d9917aee887690aa3f1747ce634e610f6db6f6b332b35c2dd89412912bca" } ,
{ file = "wrapt-1.13.3-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:936503cb0a6ed28dbfa87e8fcd0a56458822144e9d11a49ccee6d9a8adb2ac44" } ,
{ file = "wrapt-1.13.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:f9c51d9af9abb899bd34ace878fbec8bf357b3194a10c4e8e0a25512826ef056" } ,
{ file = "wrapt-1.13.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:220a869982ea9023e163ba915077816ca439489de6d2c09089b219f4e11b6785" } ,
{ file = "wrapt-1.13.3-cp310-cp310-musllinux_1_1_i686.whl" , hash = "sha256:0877fe981fd76b183711d767500e6b3111378ed2043c145e21816ee589d91096" } ,
{ file = "wrapt-1.13.3-cp310-cp310-musllinux_1_1_x86_64.whl" , hash = "sha256:43e69ffe47e3609a6aec0fe723001c60c65305784d964f5007d5b4fb1bc6bf33" } ,
{ file = "wrapt-1.13.3-cp310-cp310-win32.whl" , hash = "sha256:78dea98c81915bbf510eb6a3c9c24915e4660302937b9ae05a0947164248020f" } ,
{ file = "wrapt-1.13.3-cp310-cp310-win_amd64.whl" , hash = "sha256:ea3e746e29d4000cd98d572f3ee2a6050a4f784bb536f4ac1f035987fc1ed83e" } ,
{ file = "wrapt-1.13.3-cp35-cp35m-manylinux1_i686.whl" , hash = "sha256:8c73c1a2ec7c98d7eaded149f6d225a692caa1bd7b2401a14125446e9e90410d" } ,
{ file = "wrapt-1.13.3-cp35-cp35m-manylinux1_x86_64.whl" , hash = "sha256:086218a72ec7d986a3eddb7707c8c4526d677c7b35e355875a0fe2918b059179" } ,
{ file = "wrapt-1.13.3-cp35-cp35m-manylinux2010_i686.whl" , hash = "sha256:e92d0d4fa68ea0c02d39f1e2f9cb5bc4b4a71e8c442207433d8db47ee79d7aa3" } ,
{ file = "wrapt-1.13.3-cp35-cp35m-manylinux2010_x86_64.whl" , hash = "sha256:d4a5f6146cfa5c7ba0134249665acd322a70d1ea61732723c7d3e8cc0fa80755" } ,
{ file = "wrapt-1.13.3-cp35-cp35m-win32.whl" , hash = "sha256:8aab36778fa9bba1a8f06a4919556f9f8c7b33102bd71b3ab307bb3fecb21851" } ,
{ file = "wrapt-1.13.3-cp35-cp35m-win_amd64.whl" , hash = "sha256:944b180f61f5e36c0634d3202ba8509b986b5fbaf57db3e94df11abee244ba13" } ,
{ file = "wrapt-1.13.3-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:2ebdde19cd3c8cdf8df3fc165bc7827334bc4e353465048b36f7deeae8ee0918" } ,
{ file = "wrapt-1.13.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:610f5f83dd1e0ad40254c306f4764fcdc846641f120c3cf424ff57a19d5f7ade" } ,
{ file = "wrapt-1.13.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:5601f44a0f38fed36cc07db004f0eedeaadbdcec90e4e90509480e7e6060a5bc" } ,
{ file = "wrapt-1.13.3-cp36-cp36m-musllinux_1_1_i686.whl" , hash = "sha256:e6906d6f48437dfd80464f7d7af1740eadc572b9f7a4301e7dd3d65db285cacf" } ,
{ file = "wrapt-1.13.3-cp36-cp36m-musllinux_1_1_x86_64.whl" , hash = "sha256:766b32c762e07e26f50d8a3468e3b4228b3736c805018e4b0ec8cc01ecd88125" } ,
{ file = "wrapt-1.13.3-cp36-cp36m-win32.whl" , hash = "sha256:5f223101f21cfd41deec8ce3889dc59f88a59b409db028c469c9b20cfeefbe36" } ,
{ file = "wrapt-1.13.3-cp36-cp36m-win_amd64.whl" , hash = "sha256:f122ccd12fdc69628786d0c947bdd9cb2733be8f800d88b5a37c57f1f1d73c10" } ,
{ file = "wrapt-1.13.3-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:46f7f3af321a573fc0c3586612db4decb7eb37172af1bc6173d81f5b66c2e068" } ,
{ file = "wrapt-1.13.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:778fd096ee96890c10ce96187c76b3e99b2da44e08c9e24d5652f356873f6709" } ,
{ file = "wrapt-1.13.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:0cb23d36ed03bf46b894cfec777eec754146d68429c30431c99ef28482b5c1df" } ,
{ file = "wrapt-1.13.3-cp37-cp37m-musllinux_1_1_i686.whl" , hash = "sha256:96b81ae75591a795d8c90edc0bfaab44d3d41ffc1aae4d994c5aa21d9b8e19a2" } ,
{ file = "wrapt-1.13.3-cp37-cp37m-musllinux_1_1_x86_64.whl" , hash = "sha256:7dd215e4e8514004c8d810a73e342c536547038fb130205ec4bba9f5de35d45b" } ,
{ file = "wrapt-1.13.3-cp37-cp37m-win32.whl" , hash = "sha256:47f0a183743e7f71f29e4e21574ad3fa95676136f45b91afcf83f6a050914829" } ,
{ file = "wrapt-1.13.3-cp37-cp37m-win_amd64.whl" , hash = "sha256:fd76c47f20984b43d93de9a82011bb6e5f8325df6c9ed4d8310029a55fa361ea" } ,
{ file = "wrapt-1.13.3-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:b73d4b78807bd299b38e4598b8e7bd34ed55d480160d2e7fdaabd9931afa65f9" } ,
{ file = "wrapt-1.13.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:ec9465dd69d5657b5d2fa6133b3e1e989ae27d29471a672416fd729b429eb554" } ,
{ file = "wrapt-1.13.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:dd91006848eb55af2159375134d724032a2d1d13bcc6f81cd8d3ed9f2b8e846c" } ,
{ file = "wrapt-1.13.3-cp38-cp38-musllinux_1_1_i686.whl" , hash = "sha256:ae9de71eb60940e58207f8e71fe113c639da42adb02fb2bcbcaccc1ccecd092b" } ,
{ file = "wrapt-1.13.3-cp38-cp38-musllinux_1_1_x86_64.whl" , hash = "sha256:51799ca950cfee9396a87f4a1240622ac38973b6df5ef7a41e7f0b98797099ce" } ,
{ file = "wrapt-1.13.3-cp38-cp38-win32.whl" , hash = "sha256:4b9c458732450ec42578b5642ac53e312092acf8c0bfce140ada5ca1ac556f79" } ,
{ file = "wrapt-1.13.3-cp38-cp38-win_amd64.whl" , hash = "sha256:7dde79d007cd6dfa65afe404766057c2409316135cb892be4b1c768e3f3a11cb" } ,
{ file = "wrapt-1.13.3-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:981da26722bebb9247a0601e2922cedf8bb7a600e89c852d063313102de6f2cb" } ,
{ file = "wrapt-1.13.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:705e2af1f7be4707e49ced9153f8d72131090e52be9278b5dbb1498c749a1e32" } ,
{ file = "wrapt-1.13.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:25b1b1d5df495d82be1c9d2fad408f7ce5ca8a38085e2da41bb63c914baadff7" } ,
{ file = "wrapt-1.13.3-cp39-cp39-musllinux_1_1_i686.whl" , hash = "sha256:77416e6b17926d953b5c666a3cb718d5945df63ecf922af0ee576206d7033b5e" } ,
{ file = "wrapt-1.13.3-cp39-cp39-musllinux_1_1_x86_64.whl" , hash = "sha256:865c0b50003616f05858b22174c40ffc27a38e67359fa1495605f96125f76640" } ,
{ file = "wrapt-1.13.3-cp39-cp39-win32.whl" , hash = "sha256:0a017a667d1f7411816e4bf214646d0ad5b1da2c1ea13dec6c162736ff25a374" } ,
{ file = "wrapt-1.13.3-cp39-cp39-win_amd64.whl" , hash = "sha256:81bd7c90d28a4b2e1df135bfbd7c23aee3050078ca6441bead44c42483f9ebfb" } ,
{ file = "wrapt-1.13.3.tar.gz" , hash = "sha256:1fea9cd438686e6682271d36f3481a9f3636195578bab9ca3382e2f5f01fc185" } ,
2020-09-16 07:41:53 +00:00
]
zipp = [
2021-11-14 05:00:23 +00:00
{ file = "zipp-3.6.0-py3-none-any.whl" , hash = "sha256:9fe5ea21568a0a70e50f273397638d39b03353731e6cbbb3fd8502a33fec40bc" } ,
{ file = "zipp-3.6.0.tar.gz" , hash = "sha256:71c644c5369f4a6e07636f0aa966270449561fcea2e3d6747b8d23efaa9d7832" } ,
2020-09-16 07:41:53 +00:00
]