2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "atomicwrites"
2020-10-20 04:49:02 +03:00
version = "1.4.0"
2020-10-12 09:47:58 +03:00
description = "Atomic file writes."
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ [ package ] ]
name = "attrs"
2022-04-05 03:34:19 +03:00
version = "21.4.0"
2020-10-12 09:47:58 +03:00
description = "Classes Without Boilerplate"
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2021-07-03 22:14:24 +03:00
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
2019-11-08 15:47:37 +03:00
[ package . extras ]
2022-04-05 03:34:19 +03:00
dev = [ "coverage[toml] (>=5.0.2)" , "hypothesis" , "pympler" , "pytest (>=4.3.0)" , "six" , "mypy" , "pytest-mypy-plugins" , "zope.interface" , "furo" , "sphinx" , "sphinx-notfound-page" , "pre-commit" , "cloudpickle" ]
2021-07-03 22:14:24 +03:00
docs = [ "furo" , "sphinx" , "zope.interface" , "sphinx-notfound-page" ]
2022-04-05 03:34:19 +03:00
tests = [ "coverage[toml] (>=5.0.2)" , "hypothesis" , "pympler" , "pytest (>=4.3.0)" , "six" , "mypy" , "pytest-mypy-plugins" , "zope.interface" , "cloudpickle" ]
tests_no_zope = [ "coverage[toml] (>=5.0.2)" , "hypothesis" , "pympler" , "pytest (>=4.3.0)" , "six" , "mypy" , "pytest-mypy-plugins" , "cloudpickle" ]
2021-10-16 18:52:04 +03:00
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "black"
2022-03-29 21:27:33 +03:00
version = "22.3.0"
2020-10-12 09:47:58 +03:00
description = "The uncompromising code formatter."
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2021-06-10 13:34:26 +03:00
python-versions = ">=3.6.2"
2019-11-08 15:47:37 +03:00
[ package . dependencies ]
2022-02-01 03:23:28 +03:00
click = ">=8.0.0"
2020-08-28 03:30:03 +03:00
mypy-extensions = ">=0.4.3"
2022-02-01 03:23:28 +03:00
pathspec = ">=0.9.0"
2021-10-16 18:52:04 +03:00
platformdirs = ">=2"
2022-03-29 21:27:33 +03:00
tomli = { version = ">=1.1.0" , markers = "python_version < \"3.11\"" }
2022-02-01 03:23:28 +03:00
typing-extensions = { version = ">=3.10.0.0" , markers = "python_version < \"3.10\"" }
2019-11-08 15:47:37 +03:00
[ package . extras ]
2020-08-28 03:30:03 +03:00
colorama = [ "colorama (>=0.4.3)" ]
2021-11-03 15:35:06 +03:00
d = [ "aiohttp (>=3.7.4)" ]
2021-10-16 18:52:04 +03:00
jupyter = [ "ipython (>=7.8.0)" , "tokenize-rt (>=3.2.0)" ]
2021-06-10 13:34:26 +03:00
uvloop = [ "uvloop (>=0.15.2)" ]
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "bw-sphinxtheme"
2020-10-12 09:47:58 +03:00
version = "0.1.8"
description = "Minimalistic sphinx theme in black and white colours"
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
python-versions = "*"
[ [ package ] ]
name = "cfgv"
2021-10-16 18:52:04 +03:00
version = "3.3.1"
2020-10-12 09:47:58 +03:00
description = "Validate configuration and produce human readable error messages."
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2020-10-20 04:49:02 +03:00
python-versions = ">=3.6.1"
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "click"
2022-04-05 03:34:19 +03:00
version = "8.1.2"
2020-10-12 09:47:58 +03:00
description = "Composable command line interface toolkit"
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2022-04-05 03:34:19 +03:00
python-versions = ">=3.7"
2021-07-03 22:14:24 +03:00
[ package . dependencies ]
colorama = { version = "*" , markers = "platform_system == \"Windows\"" }
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "colorama"
2020-10-20 04:49:02 +03:00
version = "0.4.4"
2020-10-12 09:47:58 +03:00
description = "Cross-platform colored terminal text."
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2020-10-20 04:49:02 +03:00
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "coverage"
2022-04-05 03:34:19 +03:00
version = "6.3.2"
2020-10-12 09:47:58 +03:00
description = "Code coverage measurement for Python"
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2022-04-05 03:34:19 +03:00
python-versions = ">=3.7"
2020-10-20 04:49:02 +03:00
[ package . extras ]
2021-10-16 18:52:04 +03:00
toml = [ "tomli" ]
2019-11-08 15:47:37 +03:00
2020-08-28 09:23:02 +03:00
[ [ package ] ]
name = "distlib"
2022-04-05 03:34:19 +03:00
version = "0.3.4"
2020-10-12 09:47:58 +03:00
description = "Distribution utilities"
category = "dev"
2020-08-28 09:23:02 +03:00
optional = false
python-versions = "*"
2019-11-23 23:20:45 +03:00
[ [ package ] ]
name = "filelock"
2022-04-05 03:34:19 +03:00
version = "3.6.0"
2020-10-12 09:47:58 +03:00
description = "A platform independent file lock."
category = "dev"
2019-11-23 23:20:45 +03:00
optional = false
2022-04-05 03:34:19 +03:00
python-versions = ">=3.7"
2021-10-16 18:52:04 +03:00
[ 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)" ]
2019-11-23 23:20:45 +03:00
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "identify"
2022-04-05 03:34:19 +03:00
version = "2.4.12"
2020-10-12 09:47:58 +03:00
description = "File identification library for Python"
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2022-04-05 03:34:19 +03:00
python-versions = ">=3.7"
2019-11-08 15:47:37 +03:00
[ package . extras ]
2022-04-05 03:34:19 +03:00
license = [ "ukkonen" ]
2019-11-08 15:47:37 +03:00
2020-08-27 05:18:23 +03:00
[ [ package ] ]
name = "iniconfig"
2020-10-20 04:49:02 +03:00
version = "1.1.1"
2020-10-12 09:47:58 +03:00
description = "iniconfig: brain-dead simple config-ini parsing"
category = "dev"
2020-08-27 05:18:23 +03:00
optional = false
python-versions = "*"
2019-11-08 16:04:58 +03:00
[ [ package ] ]
name = "mypy"
2022-04-28 05:08:47 +03:00
version = "0.950"
2020-10-12 09:47:58 +03:00
description = "Optional static typing for Python"
category = "dev"
2019-11-08 16:04:58 +03:00
optional = false
2021-12-17 04:23:35 +03:00
python-versions = ">=3.6"
2019-11-08 16:04:58 +03:00
[ package . dependencies ]
2021-12-24 15:16:34 +03:00
mypy-extensions = ">=0.4.3"
2022-04-28 05:08:47 +03:00
tomli = { version = ">=1.1.0" , markers = "python_version < \"3.11\"" }
2021-12-24 15:16:34 +03:00
typing-extensions = ">=3.10"
2019-11-08 16:04:58 +03:00
[ package . extras ]
dmypy = [ "psutil (>=4.0)" ]
2021-12-17 04:23:35 +03:00
python2 = [ "typed-ast (>=1.4.0,<2)" ]
2022-03-12 14:58:19 +03:00
reports = [ "lxml" ]
2019-11-08 16:04:58 +03:00
[ [ package ] ]
name = "mypy-extensions"
2020-10-12 09:47:58 +03:00
version = "0.4.3"
description = "Experimental type system extensions for programs checked with the mypy typechecker."
category = "dev"
2019-11-08 16:04:58 +03:00
optional = false
python-versions = "*"
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "nodeenv"
2021-07-03 22:14:24 +03:00
version = "1.6.0"
2020-10-12 09:47:58 +03:00
description = "Node.js virtual environment builder"
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
python-versions = "*"
[ [ package ] ]
name = "packaging"
2022-04-05 03:34:19 +03:00
version = "21.3"
2020-10-12 09:47:58 +03:00
description = "Core utilities for Python packages"
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2021-07-03 22:14:24 +03:00
python-versions = ">=3.6"
2019-11-08 15:47:37 +03:00
[ package . dependencies ]
2022-04-05 03:34:19 +03:00
pyparsing = ">=2.0.2,<3.0.5 || >3.0.5"
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "pathspec"
2021-10-16 18:52:04 +03:00
version = "0.9.0"
2020-10-12 09:47:58 +03:00
description = "Utility library for gitignore style pattern matching of file paths."
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2021-10-16 18:52:04 +03:00
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
[ [ package ] ]
name = "platformdirs"
2022-04-05 03:34:19 +03:00
version = "2.5.1"
2021-10-16 18:52:04 +03:00
description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
category = "dev"
optional = false
2022-04-05 03:34:19 +03:00
python-versions = ">=3.7"
2021-10-16 18:52:04 +03:00
[ 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)" ]
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "pluggy"
2021-10-16 18:52:04 +03:00
version = "1.0.0"
2020-10-12 09:47:58 +03:00
description = "plugin and hook calling mechanisms for python"
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2021-10-16 18:52:04 +03:00
python-versions = ">=3.6"
2019-11-08 15:47:37 +03:00
[ package . extras ]
dev = [ "pre-commit" , "tox" ]
2021-10-16 18:52:04 +03:00
testing = [ "pytest" , "pytest-benchmark" ]
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "pre-commit"
2022-05-06 03:09:10 +03:00
version = "2.19.0"
2020-10-12 09:47:58 +03:00
description = "A framework for managing and maintaining multi-language pre-commit hooks."
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2022-04-05 03:34:19 +03:00
python-versions = ">=3.7"
2019-11-08 15:47:37 +03:00
[ package . dependencies ]
cfgv = ">=2.0.0"
identify = ">=1.0.0"
nodeenv = ">=0.11.1"
2020-08-28 09:23:02 +03:00
pyyaml = ">=5.1"
2019-11-08 15:47:37 +03:00
toml = "*"
2020-08-28 09:23:02 +03:00
virtualenv = ">=20.0.8"
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "py"
2022-04-05 03:34:19 +03:00
version = "1.11.0"
2020-10-12 09:47:58 +03:00
description = "library with cross-python path, ini-parsing, io, code, log facilities"
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2022-04-05 03:34:19 +03:00
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "pyparsing"
2022-04-05 03:34:19 +03:00
version = "3.0.7"
2020-10-12 09:47:58 +03:00
description = "Python parsing module"
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2022-04-05 03:34:19 +03:00
python-versions = ">=3.6"
[ package . extras ]
diagrams = [ "jinja2" , "railroad-diagrams" ]
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "pytest"
2022-04-26 01:55:23 +03:00
version = "7.1.2"
2020-10-12 09:47:58 +03:00
description = "pytest: simple powerful testing with Python"
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2022-03-17 02:55:39 +03:00
python-versions = ">=3.7"
2019-11-08 15:47:37 +03:00
[ package . dependencies ]
2020-10-12 09:47:58 +03:00
atomicwrites = { version = ">=1.0" , markers = "sys_platform == \"win32\"" }
2020-12-15 09:11:42 +03:00
attrs = ">=19.2.0"
2020-10-12 09:47:58 +03:00
colorama = { version = "*" , markers = "sys_platform == \"win32\"" }
2020-08-27 05:18:23 +03:00
iniconfig = "*"
2019-11-08 15:47:37 +03:00
packaging = "*"
2021-09-04 05:16:08 +03:00
pluggy = ">=0.12,<2.0"
2020-08-27 05:18:23 +03:00
py = ">=1.8.2"
2022-02-05 22:08:51 +03:00
tomli = ">=1.0.0"
2019-11-08 15:47:37 +03:00
[ package . extras ]
2022-02-05 22:08:51 +03:00
testing = [ "argcomplete" , "hypothesis (>=3.56)" , "mock" , "nose" , "pygments (>=2.7.2)" , "requests" , "xmlschema" ]
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "pytest-cov"
2021-06-02 13:43:30 +03:00
version = "2.12.1"
2020-10-12 09:47:58 +03:00
description = "Pytest plugin for measuring coverage."
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2020-08-28 03:17:35 +03:00
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
2019-11-08 15:47:37 +03:00
[ package . dependencies ]
2021-06-02 13:43:30 +03:00
coverage = ">=5.2.1"
2020-08-28 03:17:35 +03:00
pytest = ">=4.6"
2021-06-02 13:43:30 +03:00
toml = "*"
2019-11-08 15:47:37 +03:00
[ package . extras ]
2021-06-02 13:43:30 +03:00
testing = [ "fields" , "hunter" , "process-tests" , "six" , "pytest-xdist" , "virtualenv" ]
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "pytest-runner"
2022-03-01 05:29:17 +03:00
version = "6.0.0"
2020-10-12 09:47:58 +03:00
description = "Invoke py.test as distutils command with dependency resolution"
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2022-03-01 05:29:17 +03:00
python-versions = ">=3.7"
2019-11-08 15:47:37 +03:00
[ package . extras ]
2022-03-01 05:29:17 +03:00
docs = [ "sphinx" , "jaraco.packaging (>=9)" , "rst.linker (>=1.9)" , "jaraco.tidelift (>=1.4)" ]
testing = [ "pytest (>=6)" , "pytest-checkdocs (>=2.4)" , "pytest-flake8" , "pytest-cov" , "pytest-enabler (>=1.0.1)" , "pytest-virtualenv" , "types-setuptools" , "pytest-black (>=0.3.7)" , "pytest-mypy (>=0.9.1)" ]
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "pyyaml"
2022-04-05 03:34:19 +03:00
version = "6.0"
2020-10-12 09:47:58 +03:00
description = "YAML parser and emitter for Python"
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2022-04-05 03:34:19 +03:00
python-versions = ">=3.6"
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "six"
2021-07-03 22:14:24 +03:00
version = "1.16.0"
2020-10-12 09:47:58 +03:00
description = "Python 2 and 3 compatibility utilities"
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2020-08-28 03:22:39 +03:00
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "toml"
2021-07-03 22:14:24 +03:00
version = "0.10.2"
2020-10-12 09:47:58 +03:00
description = "Python Library for Tom's Obvious, Minimal Language"
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2021-07-03 22:14:24 +03:00
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
2019-11-08 15:47:37 +03:00
2021-07-16 20:02:44 +03:00
[ [ package ] ]
name = "tomli"
2022-04-05 03:34:19 +03:00
version = "2.0.1"
2021-07-16 20:02:44 +03:00
description = "A lil' TOML parser"
category = "dev"
optional = false
2022-04-05 03:34:19 +03:00
python-versions = ">=3.7"
2021-07-16 20:02:44 +03:00
2019-11-23 23:20:45 +03:00
[ [ package ] ]
name = "tox"
2022-04-12 02:29:43 +03:00
version = "3.25.0"
2020-10-12 09:47:58 +03:00
description = "tox is a generic virtualenv management and test command line tool"
category = "dev"
2019-11-23 23:20:45 +03:00
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
[ package . dependencies ]
2020-10-12 09:47:58 +03:00
colorama = { version = ">=0.4.1" , markers = "platform_system == \"Windows\"" }
2020-08-28 03:22:39 +03:00
filelock = ">=3.0.0"
2019-11-23 23:20:45 +03:00
packaging = ">=14"
2020-08-28 03:22:39 +03:00
pluggy = ">=0.12.0"
py = ">=1.4.17"
six = ">=1.14.0"
2019-11-23 23:20:45 +03:00
toml = ">=0.9.4"
2020-08-28 03:22:39 +03:00
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"
2019-11-23 23:20:45 +03:00
[ package . extras ]
2020-08-28 03:22:39 +03:00
docs = [ "pygments-github-lexers (>=0.0.5)" , "sphinx (>=2.0.0)" , "sphinxcontrib-autoprogram (>=0.1.5)" , "towncrier (>=18.5.0)" ]
2021-12-30 00:10:57 +03:00
testing = [ "flaky (>=3.4.0)" , "freezegun (>=0.3.11)" , "pytest (>=4.0.0)" , "pytest-cov (>=2.5.1)" , "pytest-mock (>=1.10.0)" , "pytest-randomly (>=1.0.0)" , "psutil (>=5.6.1)" , "pathlib2 (>=2.3.3)" ]
2019-11-23 23:20:45 +03:00
2019-11-08 16:04:58 +03:00
[ [ package ] ]
name = "typing-extensions"
2022-04-05 03:34:19 +03:00
version = "4.1.1"
description = "Backported and Experimental Type Hints for Python 3.6+"
2020-10-12 09:47:58 +03:00
category = "dev"
2019-11-08 16:04:58 +03:00
optional = false
2022-04-05 03:34:19 +03:00
python-versions = ">=3.6"
2019-11-08 16:04:58 +03:00
2019-11-08 15:47:37 +03:00
[ [ package ] ]
name = "virtualenv"
2022-04-05 03:34:19 +03:00
version = "20.14.0"
2020-10-12 09:47:58 +03:00
description = "Virtual Python Environment builder"
category = "dev"
2019-11-08 15:47:37 +03:00
optional = false
2021-10-16 18:52:04 +03:00
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
2020-08-28 09:23:02 +03:00
[ package . dependencies ]
distlib = ">=0.3.1,<1"
2022-04-05 03:34:19 +03:00
filelock = ">=3.2,<4"
2021-10-16 18:52:04 +03:00
platformdirs = ">=2,<3"
2020-08-28 09:23:02 +03:00
six = ">=1.9.0,<2"
2019-11-08 15:47:37 +03:00
[ package . extras ]
2022-04-05 03:34:19 +03:00
docs = [ "proselint (>=0.10.2)" , "sphinx (>=3)" , "sphinx-argparse (>=0.2.5)" , "sphinx-rtd-theme (>=0.4.3)" , "towncrier (>=21.3)" ]
2021-10-16 18:52:04 +03:00
testing = [ "coverage (>=4)" , "coverage-enable-subprocess (>=1)" , "flaky (>=3)" , "pytest (>=4)" , "pytest-env (>=0.6.2)" , "pytest-freezegun (>=0.4.1)" , "pytest-mock (>=2)" , "pytest-randomly (>=1)" , "pytest-timeout (>=1)" , "packaging (>=20.0)" ]
2019-11-08 15:47:37 +03:00
[ metadata ]
2020-10-12 09:47:58 +03:00
lock-version = "1.1"
2021-10-16 18:52:04 +03:00
python-versions = "^3.8"
2022-05-06 03:09:10 +03:00
content-hash = "79d464bcfe246e843005ff88d4ddc655a5196d74978599b33ccb890a1d3952fa"
2019-11-08 15:47:37 +03:00
[ metadata . files ]
atomicwrites = [
2020-10-20 04:49:02 +03:00
{ file = "atomicwrites-1.4.0-py2.py3-none-any.whl" , hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197" } ,
{ file = "atomicwrites-1.4.0.tar.gz" , hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a" } ,
2019-11-08 15:47:37 +03:00
]
attrs = [
2022-04-05 03:34:19 +03:00
{ file = "attrs-21.4.0-py2.py3-none-any.whl" , hash = "sha256:2d27e3784d7a565d36ab851fe94887c5eccd6a463168875832a1be79c82828b4" } ,
{ file = "attrs-21.4.0.tar.gz" , hash = "sha256:626ba8234211db98e869df76230a137c4c40a12d72445c45d5f5b716f076e2fd" } ,
2021-10-16 18:52:04 +03:00
]
2019-11-08 15:47:37 +03:00
black = [
2022-03-29 21:27:33 +03:00
{ file = "black-22.3.0-cp310-cp310-macosx_10_9_universal2.whl" , hash = "sha256:2497f9c2386572e28921fa8bec7be3e51de6801f7459dffd6e62492531c47e09" } ,
{ file = "black-22.3.0-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:5795a0375eb87bfe902e80e0c8cfaedf8af4d49694d69161e5bd3206c18618bb" } ,
{ file = "black-22.3.0-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:e3556168e2e5c49629f7b0f377070240bd5511e45e25a4497bb0073d9dda776a" } ,
{ file = "black-22.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:67c8301ec94e3bcc8906740fe071391bce40a862b7be0b86fb5382beefecd968" } ,
{ file = "black-22.3.0-cp310-cp310-win_amd64.whl" , hash = "sha256:fd57160949179ec517d32ac2ac898b5f20d68ed1a9c977346efbac9c2f1e779d" } ,
{ file = "black-22.3.0-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:cc1e1de68c8e5444e8f94c3670bb48a2beef0e91dddfd4fcc29595ebd90bb9ce" } ,
{ file = "black-22.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:6d2fc92002d44746d3e7db7cf9313cf4452f43e9ea77a2c939defce3b10b5c82" } ,
{ file = "black-22.3.0-cp36-cp36m-win_amd64.whl" , hash = "sha256:a6342964b43a99dbc72f72812bf88cad8f0217ae9acb47c0d4f141a6416d2d7b" } ,
{ file = "black-22.3.0-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:328efc0cc70ccb23429d6be184a15ce613f676bdfc85e5fe8ea2a9354b4e9015" } ,
{ file = "black-22.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:06f9d8846f2340dfac80ceb20200ea5d1b3f181dd0556b47af4e8e0b24fa0a6b" } ,
{ file = "black-22.3.0-cp37-cp37m-win_amd64.whl" , hash = "sha256:ad4efa5fad66b903b4a5f96d91461d90b9507a812b3c5de657d544215bb7877a" } ,
{ file = "black-22.3.0-cp38-cp38-macosx_10_9_universal2.whl" , hash = "sha256:e8477ec6bbfe0312c128e74644ac8a02ca06bcdb8982d4ee06f209be28cdf163" } ,
{ file = "black-22.3.0-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:637a4014c63fbf42a692d22b55d8ad6968a946b4a6ebc385c5505d9625b6a464" } ,
{ file = "black-22.3.0-cp38-cp38-macosx_11_0_arm64.whl" , hash = "sha256:863714200ada56cbc366dc9ae5291ceb936573155f8bf8e9de92aef51f3ad0f0" } ,
{ file = "black-22.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:10dbe6e6d2988049b4655b2b739f98785a884d4d6b85bc35133a8fb9a2233176" } ,
{ file = "black-22.3.0-cp38-cp38-win_amd64.whl" , hash = "sha256:cee3e11161dde1b2a33a904b850b0899e0424cc331b7295f2a9698e79f9a69a0" } ,
{ file = "black-22.3.0-cp39-cp39-macosx_10_9_universal2.whl" , hash = "sha256:5891ef8abc06576985de8fa88e95ab70641de6c1fca97e2a15820a9b69e51b20" } ,
{ file = "black-22.3.0-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:30d78ba6bf080eeaf0b7b875d924b15cd46fec5fd044ddfbad38c8ea9171043a" } ,
{ file = "black-22.3.0-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:ee8f1f7228cce7dffc2b464f07ce769f478968bfb3dd1254a4c2eeed84928aad" } ,
{ file = "black-22.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:6ee227b696ca60dd1c507be80a6bc849a5a6ab57ac7352aad1ffec9e8b805f21" } ,
{ file = "black-22.3.0-cp39-cp39-win_amd64.whl" , hash = "sha256:9b542ced1ec0ceeff5b37d69838106a6348e60db7b8fdd245294dc1d26136265" } ,
{ file = "black-22.3.0-py3-none-any.whl" , hash = "sha256:bc58025940a896d7e5356952228b68f793cf5fcb342be703c3a2669a1488cb72" } ,
{ file = "black-22.3.0.tar.gz" , hash = "sha256:35020b8886c022ced9282b51b5a875b6d1ab0c387b31a065b84db7c33085ca79" } ,
2019-11-08 15:47:37 +03:00
]
bw-sphinxtheme = [
{ file = "bw_sphinxtheme-0.1.8.tar.gz" , hash = "sha256:dde9d9003e044367c28a8a63ee0c38fb53306241b71a04abb97a567f2ddefca9" } ,
]
cfgv = [
2021-10-16 18:52:04 +03:00
{ file = "cfgv-3.3.1-py2.py3-none-any.whl" , hash = "sha256:c6a0883f3917a037485059700b9e75da2464e6c27051014ad85ba6aaa5884426" } ,
{ file = "cfgv-3.3.1.tar.gz" , hash = "sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736" } ,
2019-11-08 15:47:37 +03:00
]
click = [
2022-04-05 03:34:19 +03:00
{ file = "click-8.1.2-py3-none-any.whl" , hash = "sha256:24e1a4a9ec5bf6299411369b208c1df2188d9eb8d916302fe6bf03faed227f1e" } ,
{ file = "click-8.1.2.tar.gz" , hash = "sha256:479707fe14d9ec9a0757618b7a100a0ae4c4e236fac5b7f80ca68028141a1a72" } ,
2019-11-08 15:47:37 +03:00
]
colorama = [
2020-10-20 04:49:02 +03:00
{ file = "colorama-0.4.4-py2.py3-none-any.whl" , hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2" } ,
{ file = "colorama-0.4.4.tar.gz" , hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b" } ,
2019-11-08 15:47:37 +03:00
]
coverage = [
2022-04-05 03:34:19 +03:00
{ file = "coverage-6.3.2-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:9b27d894748475fa858f9597c0ee1d4829f44683f3813633aaf94b19cb5453cf" } ,
{ file = "coverage-6.3.2-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:37d1141ad6b2466a7b53a22e08fe76994c2d35a5b6b469590424a9953155afac" } ,
{ file = "coverage-6.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:f9987b0354b06d4df0f4d3e0ec1ae76d7ce7cbca9a2f98c25041eb79eec766f1" } ,
{ file = "coverage-6.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:26e2deacd414fc2f97dd9f7676ee3eaecd299ca751412d89f40bc01557a6b1b4" } ,
{ file = "coverage-6.3.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:4dd8bafa458b5c7d061540f1ee9f18025a68e2d8471b3e858a9dad47c8d41903" } ,
{ file = "coverage-6.3.2-cp310-cp310-musllinux_1_1_aarch64.whl" , hash = "sha256:46191097ebc381fbf89bdce207a6c107ac4ec0890d8d20f3360345ff5976155c" } ,
{ file = "coverage-6.3.2-cp310-cp310-musllinux_1_1_i686.whl" , hash = "sha256:6f89d05e028d274ce4fa1a86887b071ae1755082ef94a6740238cd7a8178804f" } ,
{ file = "coverage-6.3.2-cp310-cp310-musllinux_1_1_x86_64.whl" , hash = "sha256:58303469e9a272b4abdb9e302a780072c0633cdcc0165db7eec0f9e32f901e05" } ,
{ file = "coverage-6.3.2-cp310-cp310-win32.whl" , hash = "sha256:2fea046bfb455510e05be95e879f0e768d45c10c11509e20e06d8fcaa31d9e39" } ,
{ file = "coverage-6.3.2-cp310-cp310-win_amd64.whl" , hash = "sha256:a2a8b8bcc399edb4347a5ca8b9b87e7524c0967b335fbb08a83c8421489ddee1" } ,
{ file = "coverage-6.3.2-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:f1555ea6d6da108e1999b2463ea1003fe03f29213e459145e70edbaf3e004aaa" } ,
{ file = "coverage-6.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:e5f4e1edcf57ce94e5475fe09e5afa3e3145081318e5fd1a43a6b4539a97e518" } ,
{ file = "coverage-6.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:7a15dc0a14008f1da3d1ebd44bdda3e357dbabdf5a0b5034d38fcde0b5c234b7" } ,
{ file = "coverage-6.3.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:21b7745788866028adeb1e0eca3bf1101109e2dc58456cb49d2d9b99a8c516e6" } ,
{ file = "coverage-6.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl" , hash = "sha256:8ce257cac556cb03be4a248d92ed36904a59a4a5ff55a994e92214cde15c5bad" } ,
{ file = "coverage-6.3.2-cp37-cp37m-musllinux_1_1_i686.whl" , hash = "sha256:b0be84e5a6209858a1d3e8d1806c46214e867ce1b0fd32e4ea03f4bd8b2e3359" } ,
{ file = "coverage-6.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl" , hash = "sha256:acf53bc2cf7282ab9b8ba346746afe703474004d9e566ad164c91a7a59f188a4" } ,
{ file = "coverage-6.3.2-cp37-cp37m-win32.whl" , hash = "sha256:8bdde1177f2311ee552f47ae6e5aa7750c0e3291ca6b75f71f7ffe1f1dab3dca" } ,
{ file = "coverage-6.3.2-cp37-cp37m-win_amd64.whl" , hash = "sha256:b31651d018b23ec463e95cf10070d0b2c548aa950a03d0b559eaa11c7e5a6fa3" } ,
{ file = "coverage-6.3.2-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:07e6db90cd9686c767dcc593dff16c8c09f9814f5e9c51034066cad3373b914d" } ,
{ file = "coverage-6.3.2-cp38-cp38-macosx_11_0_arm64.whl" , hash = "sha256:2c6dbb42f3ad25760010c45191e9757e7dce981cbfb90e42feef301d71540059" } ,
{ file = "coverage-6.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:c76aeef1b95aff3905fb2ae2d96e319caca5b76fa41d3470b19d4e4a3a313512" } ,
{ file = "coverage-6.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:8cf5cfcb1521dc3255d845d9dca3ff204b3229401994ef8d1984b32746bb45ca" } ,
{ file = "coverage-6.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:8fbbdc8d55990eac1b0919ca69eb5a988a802b854488c34b8f37f3e2025fa90d" } ,
{ file = "coverage-6.3.2-cp38-cp38-musllinux_1_1_aarch64.whl" , hash = "sha256:ec6bc7fe73a938933d4178c9b23c4e0568e43e220aef9472c4f6044bfc6dd0f0" } ,
{ file = "coverage-6.3.2-cp38-cp38-musllinux_1_1_i686.whl" , hash = "sha256:9baff2a45ae1f17c8078452e9e5962e518eab705e50a0aa8083733ea7d45f3a6" } ,
{ file = "coverage-6.3.2-cp38-cp38-musllinux_1_1_x86_64.whl" , hash = "sha256:fd9e830e9d8d89b20ab1e5af09b32d33e1a08ef4c4e14411e559556fd788e6b2" } ,
{ file = "coverage-6.3.2-cp38-cp38-win32.whl" , hash = "sha256:f7331dbf301b7289013175087636bbaf5b2405e57259dd2c42fdcc9fcc47325e" } ,
{ file = "coverage-6.3.2-cp38-cp38-win_amd64.whl" , hash = "sha256:68353fe7cdf91f109fc7d474461b46e7f1f14e533e911a2a2cbb8b0fc8613cf1" } ,
{ file = "coverage-6.3.2-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:b78e5afb39941572209f71866aa0b206c12f0109835aa0d601e41552f9b3e620" } ,
{ file = "coverage-6.3.2-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:4e21876082ed887baed0146fe222f861b5815455ada3b33b890f4105d806128d" } ,
{ file = "coverage-6.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:34626a7eee2a3da12af0507780bb51eb52dca0e1751fd1471d0810539cefb536" } ,
{ file = "coverage-6.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:1ebf730d2381158ecf3dfd4453fbca0613e16eaa547b4170e2450c9707665ce7" } ,
{ file = "coverage-6.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:dd6fe30bd519694b356cbfcaca9bd5c1737cddd20778c6a581ae20dc8c04def2" } ,
{ file = "coverage-6.3.2-cp39-cp39-musllinux_1_1_aarch64.whl" , hash = "sha256:96f8a1cb43ca1422f36492bebe63312d396491a9165ed3b9231e778d43a7fca4" } ,
{ file = "coverage-6.3.2-cp39-cp39-musllinux_1_1_i686.whl" , hash = "sha256:dd035edafefee4d573140a76fdc785dc38829fe5a455c4bb12bac8c20cfc3d69" } ,
{ file = "coverage-6.3.2-cp39-cp39-musllinux_1_1_x86_64.whl" , hash = "sha256:5ca5aeb4344b30d0bec47481536b8ba1181d50dbe783b0e4ad03c95dc1296684" } ,
{ file = "coverage-6.3.2-cp39-cp39-win32.whl" , hash = "sha256:f5fa5803f47e095d7ad8443d28b01d48c0359484fec1b9d8606d0e3282084bc4" } ,
{ file = "coverage-6.3.2-cp39-cp39-win_amd64.whl" , hash = "sha256:9548f10d8be799551eb3a9c74bbf2b4934ddb330e08a73320123c07f95cc2d92" } ,
{ file = "coverage-6.3.2-pp36.pp37.pp38-none-any.whl" , hash = "sha256:18d520c6860515a771708937d2f78f63cc47ab3b80cb78e86573b0a760161faf" } ,
{ file = "coverage-6.3.2.tar.gz" , hash = "sha256:03e2a7826086b91ef345ff18742ee9fc47a6839ccd517061ef8fa1976e652ce9" } ,
2019-11-08 15:47:37 +03:00
]
2020-08-28 09:23:02 +03:00
distlib = [
2022-04-05 03:34:19 +03:00
{ file = "distlib-0.3.4-py2.py3-none-any.whl" , hash = "sha256:6564fe0a8f51e734df6333d08b8b94d4ea8ee6b99b5ed50613f731fd4089f34b" } ,
{ file = "distlib-0.3.4.zip" , hash = "sha256:e4b58818180336dc9c529bfb9a0b58728ffc09ad92027a3f30b7cd91e3458579" } ,
2020-08-28 09:23:02 +03:00
]
2019-11-23 23:20:45 +03:00
filelock = [
2022-04-05 03:34:19 +03:00
{ file = "filelock-3.6.0-py3-none-any.whl" , hash = "sha256:f8314284bfffbdcfa0ff3d7992b023d4c628ced6feb957351d4c48d059f56bc0" } ,
{ file = "filelock-3.6.0.tar.gz" , hash = "sha256:9cd540a9352e432c7246a48fe4e8712b10acb1df2ad1f30e8c070b82ae1fed85" } ,
2019-11-23 23:20:45 +03:00
]
2019-11-08 15:47:37 +03:00
identify = [
2022-04-05 03:34:19 +03:00
{ file = "identify-2.4.12-py2.py3-none-any.whl" , hash = "sha256:5f06b14366bd1facb88b00540a1de05b69b310cbc2654db3c7e07fa3a4339323" } ,
{ file = "identify-2.4.12.tar.gz" , hash = "sha256:3f3244a559290e7d3deb9e9adc7b33594c1bc85a9dd82e0f1be519bf12a1ec17" } ,
2019-11-08 15:47:37 +03:00
]
2020-08-27 05:18:23 +03:00
iniconfig = [
2020-10-20 04:49:02 +03:00
{ file = "iniconfig-1.1.1-py2.py3-none-any.whl" , hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3" } ,
{ file = "iniconfig-1.1.1.tar.gz" , hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32" } ,
2019-11-08 15:47:37 +03:00
]
2019-11-08 16:04:58 +03:00
mypy = [
2022-04-28 05:08:47 +03:00
{ file = "mypy-0.950-cp310-cp310-macosx_10_9_universal2.whl" , hash = "sha256:cf9c261958a769a3bd38c3e133801ebcd284ffb734ea12d01457cb09eacf7d7b" } ,
{ file = "mypy-0.950-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:b5b5bd0ffb11b4aba2bb6d31b8643902c48f990cc92fda4e21afac658044f0c0" } ,
{ file = "mypy-0.950-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:5e7647df0f8fc947388e6251d728189cfadb3b1e558407f93254e35abc026e22" } ,
{ file = "mypy-0.950-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:eaff8156016487c1af5ffa5304c3e3fd183edcb412f3e9c72db349faf3f6e0eb" } ,
{ file = "mypy-0.950-cp310-cp310-win_amd64.whl" , hash = "sha256:563514c7dc504698fb66bb1cf897657a173a496406f1866afae73ab5b3cdb334" } ,
{ file = "mypy-0.950-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:dd4d670eee9610bf61c25c940e9ade2d0ed05eb44227275cce88701fee014b1f" } ,
{ file = "mypy-0.950-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:ca75ecf2783395ca3016a5e455cb322ba26b6d33b4b413fcdedfc632e67941dc" } ,
{ file = "mypy-0.950-cp36-cp36m-win_amd64.whl" , hash = "sha256:6003de687c13196e8a1243a5e4bcce617d79b88f83ee6625437e335d89dfebe2" } ,
{ file = "mypy-0.950-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:4c653e4846f287051599ed8f4b3c044b80e540e88feec76b11044ddc5612ffed" } ,
{ file = "mypy-0.950-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:e19736af56947addedce4674c0971e5dceef1b5ec7d667fe86bcd2b07f8f9075" } ,
{ file = "mypy-0.950-cp37-cp37m-win_amd64.whl" , hash = "sha256:ef7beb2a3582eb7a9f37beaf38a28acfd801988cde688760aea9e6cc4832b10b" } ,
{ file = "mypy-0.950-cp38-cp38-macosx_10_9_universal2.whl" , hash = "sha256:0112752a6ff07230f9ec2f71b0d3d4e088a910fdce454fdb6553e83ed0eced7d" } ,
{ file = "mypy-0.950-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:ee0a36edd332ed2c5208565ae6e3a7afc0eabb53f5327e281f2ef03a6bc7687a" } ,
{ file = "mypy-0.950-cp38-cp38-macosx_11_0_arm64.whl" , hash = "sha256:77423570c04aca807508a492037abbd72b12a1fb25a385847d191cd50b2c9605" } ,
{ file = "mypy-0.950-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:5ce6a09042b6da16d773d2110e44f169683d8cc8687e79ec6d1181a72cb028d2" } ,
{ file = "mypy-0.950-cp38-cp38-win_amd64.whl" , hash = "sha256:5b231afd6a6e951381b9ef09a1223b1feabe13625388db48a8690f8daa9b71ff" } ,
{ file = "mypy-0.950-cp39-cp39-macosx_10_9_universal2.whl" , hash = "sha256:0384d9f3af49837baa92f559d3fa673e6d2652a16550a9ee07fc08c736f5e6f8" } ,
{ file = "mypy-0.950-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:1fdeb0a0f64f2a874a4c1f5271f06e40e1e9779bf55f9567f149466fc7a55038" } ,
{ file = "mypy-0.950-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:61504b9a5ae166ba5ecfed9e93357fd51aa693d3d434b582a925338a2ff57fd2" } ,
{ file = "mypy-0.950-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:a952b8bc0ae278fc6316e6384f67bb9a396eb30aced6ad034d3a76120ebcc519" } ,
{ file = "mypy-0.950-cp39-cp39-win_amd64.whl" , hash = "sha256:eaea21d150fb26d7b4856766e7addcf929119dd19fc832b22e71d942835201ef" } ,
{ file = "mypy-0.950-py3-none-any.whl" , hash = "sha256:a4d9898f46446bfb6405383b57b96737dcfd0a7f25b748e78ef3e8c576bba3cb" } ,
{ file = "mypy-0.950.tar.gz" , hash = "sha256:1b333cfbca1762ff15808a0ef4f71b5d3eed8528b23ea1c3fb50543c867d68de" } ,
2019-11-08 16:04:58 +03: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" } ,
]
2019-11-08 15:47:37 +03:00
nodeenv = [
2021-07-03 22:14:24 +03:00
{ file = "nodeenv-1.6.0-py2.py3-none-any.whl" , hash = "sha256:621e6b7076565ddcacd2db0294c0381e01fd28945ab36bcf00f41c5daf63bef7" } ,
{ file = "nodeenv-1.6.0.tar.gz" , hash = "sha256:3ef13ff90291ba2a4a7a4ff9a979b63ffdd00a464dbe04acf0ea6471517a4c2b" } ,
2019-11-08 15:47:37 +03:00
]
packaging = [
2022-04-05 03:34:19 +03:00
{ file = "packaging-21.3-py3-none-any.whl" , hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522" } ,
{ file = "packaging-21.3.tar.gz" , hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb" } ,
2019-11-08 15:47:37 +03:00
]
pathspec = [
2021-10-16 18:52:04 +03:00
{ file = "pathspec-0.9.0-py2.py3-none-any.whl" , hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a" } ,
{ file = "pathspec-0.9.0.tar.gz" , hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1" } ,
]
platformdirs = [
2022-04-05 03:34:19 +03:00
{ file = "platformdirs-2.5.1-py3-none-any.whl" , hash = "sha256:bcae7cab893c2d310a711b70b24efb93334febe65f8de776ee320b517471e227" } ,
{ file = "platformdirs-2.5.1.tar.gz" , hash = "sha256:7535e70dfa32e84d4b34996ea99c5e432fa29a708d0f4e394bbcb2a8faa4f16d" } ,
2019-11-08 15:47:37 +03:00
]
pluggy = [
2021-10-16 18:52:04 +03:00
{ file = "pluggy-1.0.0-py2.py3-none-any.whl" , hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3" } ,
{ file = "pluggy-1.0.0.tar.gz" , hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159" } ,
2019-11-08 15:47:37 +03:00
]
pre-commit = [
2022-05-06 03:09:10 +03:00
{ file = "pre_commit-2.19.0-py2.py3-none-any.whl" , hash = "sha256:10c62741aa5704faea2ad69cb550ca78082efe5697d6f04e5710c3c229afdd10" } ,
{ file = "pre_commit-2.19.0.tar.gz" , hash = "sha256:4233a1e38621c87d9dda9808c6606d7e7ba0e087cd56d3fe03202a01d2919615" } ,
2019-11-08 15:47:37 +03:00
]
py = [
2022-04-05 03:34:19 +03:00
{ file = "py-1.11.0-py2.py3-none-any.whl" , hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378" } ,
{ file = "py-1.11.0.tar.gz" , hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719" } ,
2019-11-08 15:47:37 +03:00
]
pyparsing = [
2022-04-05 03:34:19 +03:00
{ file = "pyparsing-3.0.7-py3-none-any.whl" , hash = "sha256:a6c06a88f252e6c322f65faf8f418b16213b51bdfaece0524c1c1bc30c63c484" } ,
{ file = "pyparsing-3.0.7.tar.gz" , hash = "sha256:18ee9022775d270c55187733956460083db60b37d0d0fb357445f3094eed3eea" } ,
2019-11-08 15:47:37 +03:00
]
pytest = [
2022-04-26 01:55:23 +03:00
{ file = "pytest-7.1.2-py3-none-any.whl" , hash = "sha256:13d0e3ccfc2b6e26be000cb6568c832ba67ba32e719443bfe725814d3c42433c" } ,
{ file = "pytest-7.1.2.tar.gz" , hash = "sha256:a06a0425453864a270bc45e71f783330a7428defb4230fb5e6a731fde06ecd45" } ,
2019-11-08 15:47:37 +03:00
]
pytest-cov = [
2021-06-02 13:43:30 +03: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" } ,
2019-11-08 15:47:37 +03:00
]
pytest-runner = [
2022-03-01 05:29:17 +03:00
{ file = "pytest-runner-6.0.0.tar.gz" , hash = "sha256:b4d85362ed29b4c348678de797df438f0f0509497ddb8c647096c02a6d87b685" } ,
{ file = "pytest_runner-6.0.0-py3-none-any.whl" , hash = "sha256:4c059cf11cf4306e369c0f8f703d1eaf8f32fad370f41deb5f007044656aca6b" } ,
2019-11-08 15:47:37 +03:00
]
pyyaml = [
2022-04-05 03:34:19 +03: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" } ,
2019-11-08 15:47:37 +03:00
]
six = [
2021-07-03 22:14:24 +03:00
{ file = "six-1.16.0-py2.py3-none-any.whl" , hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" } ,
{ file = "six-1.16.0.tar.gz" , hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926" } ,
2019-11-08 15:47:37 +03:00
]
toml = [
2021-07-03 22:14:24 +03:00
{ file = "toml-0.10.2-py2.py3-none-any.whl" , hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b" } ,
{ file = "toml-0.10.2.tar.gz" , hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f" } ,
2019-11-08 15:47:37 +03:00
]
2021-07-16 20:02:44 +03:00
tomli = [
2022-04-05 03:34:19 +03:00
{ file = "tomli-2.0.1-py3-none-any.whl" , hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc" } ,
{ file = "tomli-2.0.1.tar.gz" , hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f" } ,
2021-07-16 20:02:44 +03:00
]
2019-11-23 23:20:45 +03:00
tox = [
2022-04-12 02:29:43 +03:00
{ file = "tox-3.25.0-py2.py3-none-any.whl" , hash = "sha256:0805727eb4d6b049de304977dfc9ce315a1938e6619c3ab9f38682bb04662a5a" } ,
{ file = "tox-3.25.0.tar.gz" , hash = "sha256:37888f3092aa4e9f835fc8cc6dadbaaa0782651c41ef359e3a5743fcb0308160" } ,
2019-11-23 23:20:45 +03:00
]
2019-11-08 16:04:58 +03:00
typing-extensions = [
2022-04-05 03:34:19 +03:00
{ file = "typing_extensions-4.1.1-py3-none-any.whl" , hash = "sha256:21c85e0fe4b9a155d0799430b0ad741cdce7e359660ccbd8b530613e8df88ce2" } ,
{ file = "typing_extensions-4.1.1.tar.gz" , hash = "sha256:1a9462dcc3347a79b1f1c0271fbe79e844580bb598bafa1ed208b94da3cdcd42" } ,
2019-11-08 16:04:58 +03:00
]
2019-11-08 15:47:37 +03:00
virtualenv = [
2022-04-05 03:34:19 +03:00
{ file = "virtualenv-20.14.0-py2.py3-none-any.whl" , hash = "sha256:1e8588f35e8b42c6ec6841a13c5e88239de1e6e4e4cedfd3916b306dc826ec66" } ,
{ file = "virtualenv-20.14.0.tar.gz" , hash = "sha256:8e5b402037287126e81ccde9432b95a8be5b19d36584f64957060a3488c11ca8" } ,
2019-11-08 15:47:37 +03:00
]