2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "absl-py"
2022-09-02 10:10:38 +02:00
version = "1.2.0"
2021-01-08 17:32:39 +01:00
description = "Abseil Python Common Libraries, see https://github.com/abseil/abseil-py."
category = "main"
optional = false
2022-09-02 10:10:38 +02:00
python-versions = ">=3.6"
2021-01-08 17:32:39 +01:00
2022-02-11 11:45:21 +00:00
[ [ package ] ]
name = "anyio"
2022-09-02 10:10:38 +02:00
version = "3.6.1"
2022-02-11 11:45:21 +00:00
description = "High level compatibility layer for multiple asynchronous event loop implementations"
category = "main"
optional = false
python-versions = ">=3.6.2"
[ package . dependencies ]
idna = ">=2.8"
sniffio = ">=1.1"
typing-extensions = { version = "*" , markers = "python_version < \"3.8\"" }
[ package . extras ]
2022-09-02 10:10:38 +02:00
doc = [ "packaging" , "sphinx-autodoc-typehints (>=1.2.0)" , "sphinx-rtd-theme" ]
test = [ "contextlib2" , "coverage[toml] (>=4.5)" , "hypothesis (>=4.0)" , "mock (>=4)" , "pytest (>=7.0)" , "pytest-mock (>=3.6.1)" , "trustme" , "uvloop (<0.15)" , "uvloop (>=0.15)" ]
2022-02-11 11:45:21 +00:00
trio = [ "trio (>=0.16)" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "appdirs"
version = "1.4.4"
description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
category = "main"
optional = false
python-versions = "*"
[ [ package ] ]
name = "astunparse"
version = "1.6.3"
description = "An AST unparser for Python"
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
six = ">=1.6.1,<2.0"
2022-09-02 10:10:38 +02:00
wheel = ">=0.23.0,<1.0"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "atomicwrites"
2022-09-02 10:10:38 +02:00
version = "1.4.1"
2021-01-08 17:32:39 +01:00
description = "Atomic file writes."
category = "dev"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ [ package ] ]
name = "attrs"
2022-09-02 10:10:38 +02:00
version = "22.1.0"
2021-01-08 17:32:39 +01:00
description = "Classes Without Boilerplate"
category = "main"
optional = false
2022-09-02 10:10:38 +02:00
python-versions = ">=3.5"
2021-01-08 17:32:39 +01:00
[ package . extras ]
2022-09-02 10:10:38 +02:00
dev = [ "cloudpickle" , "coverage[toml] (>=5.0.2)" , "furo" , "hypothesis" , "mypy (>=0.900,!=0.940)" , "pre-commit" , "pympler" , "pytest (>=4.3.0)" , "pytest-mypy-plugins" , "sphinx" , "sphinx-notfound-page" , "zope.interface" ]
docs = [ "furo" , "sphinx" , "sphinx-notfound-page" , "zope.interface" ]
tests = [ "cloudpickle" , "coverage[toml] (>=5.0.2)" , "hypothesis" , "mypy (>=0.900,!=0.940)" , "pympler" , "pytest (>=4.3.0)" , "pytest-mypy-plugins" , "zope.interface" ]
tests_no_zope = [ "cloudpickle" , "coverage[toml] (>=5.0.2)" , "hypothesis" , "mypy (>=0.900,!=0.940)" , "pympler" , "pytest (>=4.3.0)" , "pytest-mypy-plugins" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "audioread"
2022-09-02 10:10:38 +02:00
version = "3.0.0"
2021-01-08 17:32:39 +01:00
description = "multi-library, cross-platform audio decoding"
category = "main"
optional = false
2022-09-02 10:10:38 +02:00
python-versions = ">=3.6"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "black"
2022-09-02 10:10:38 +02:00
version = "21.12b0"
2021-01-08 17:32:39 +01:00
description = "The uncompromising code formatter."
category = "dev"
optional = false
2022-02-11 11:45:21 +00:00
python-versions = ">=3.6.2"
2021-01-08 17:32:39 +01:00
[ package . dependencies ]
click = ">=7.1.2"
mypy-extensions = ">=0.4.3"
2022-09-02 10:10:38 +02:00
pathspec = ">=0.9.0,<1"
platformdirs = ">=2"
2022-02-11 11:45:21 +00:00
tomli = ">=0.2.6,<2.0.0"
2022-09-02 10:10:38 +02:00
typed-ast = { version = ">=1.4.2" , markers = "python_version < \"3.8\" and implementation_name == \"cpython\"" }
2022-09-02 15:02:34 +02:00
typing-extensions = [
{ version = ">=3.10.0.0" , markers = "python_version < \"3.10\"" } ,
{ version = ">=3.10.0.0,<3.10.0.1 || >3.10.0.1" , markers = "python_version >= \"3.10\"" } ,
]
2021-01-08 17:32:39 +01:00
[ package . extras ]
colorama = [ "colorama (>=0.4.3)" ]
2022-09-02 10:10:38 +02:00
d = [ "aiohttp (>=3.7.4)" ]
jupyter = [ "ipython (>=7.8.0)" , "tokenize-rt (>=3.2.0)" ]
python2 = [ "typed-ast (>=1.4.3)" ]
2022-02-11 11:45:21 +00:00
uvloop = [ "uvloop (>=0.15.2)" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "cachetools"
2022-09-02 15:02:34 +02:00
version = "5.2.0"
2021-01-08 17:32:39 +01:00
description = "Extensible memoizing collections and decorators"
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = "~=3.7"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "certifi"
2022-09-02 10:10:38 +02:00
version = "2022.6.15"
2021-01-08 17:32:39 +01:00
description = "Python package for providing Mozilla's CA Bundle."
category = "main"
optional = false
2022-09-02 10:10:38 +02:00
python-versions = ">=3.6"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "cffi"
2022-09-02 10:10:38 +02:00
version = "1.15.1"
2021-01-08 17:32:39 +01:00
description = "Foreign Function Interface for Python calling C code."
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
pycparser = "*"
[ [ package ] ]
2021-08-24 17:33:16 +02:00
name = "charset-normalizer"
2022-09-02 10:10:38 +02:00
version = "2.1.1"
2021-08-24 17:33:16 +02:00
description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
2021-01-08 17:32:39 +01:00
category = "main"
optional = false
2022-09-02 10:10:38 +02:00
python-versions = ">=3.6.0"
2021-08-24 17:33:16 +02:00
[ package . extras ]
unicode_backport = [ "unicodedata2" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "click"
version = "7.1.2"
description = "Composable command line interface toolkit"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
[ [ package ] ]
name = "colorama"
2022-09-02 10:10:38 +02:00
version = "0.4.5"
2021-01-08 17:32:39 +01:00
description = "Cross-platform colored terminal text."
2021-01-08 18:52:09 +01:00
category = "main"
optional = false
2021-08-24 17:33:16 +02:00
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
2021-01-08 18:52:09 +01:00
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "decorator"
2022-02-11 11:45:21 +00:00
version = "5.1.1"
2021-01-08 17:32:39 +01:00
description = "Decorators for Humans"
category = "main"
optional = false
2021-08-24 17:33:16 +02:00
python-versions = ">=3.5"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "ffmpeg-python"
version = "0.2.0"
description = "Python bindings for FFmpeg - with complex filtering support"
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
future = "*"
[ package . extras ]
2022-09-02 10:10:38 +02:00
dev = [ "Sphinx (==2.1.0)" , "future (==0.17.1)" , "numpy (==1.16.4)" , "pytest (==4.6.1)" , "pytest-mock (==1.10.4)" , "tox (==3.12.1)" ]
2021-01-08 17:32:39 +01:00
2021-08-24 17:33:16 +02:00
[ [ package ] ]
name = "flatbuffers"
2022-09-02 18:05:03 +02:00
version = "1.12"
2021-08-24 17:33:16 +02:00
description = "The FlatBuffers serialization format for Python"
category = "main"
optional = false
python-versions = "*"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "future"
version = "0.18.2"
description = "Clean single-source support for Python 3 and 2"
category = "main"
optional = false
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
[ [ package ] ]
name = "gast"
2021-08-24 17:33:16 +02:00
version = "0.4.0"
2021-01-08 17:32:39 +01:00
description = "Python AST that abstracts the underlying Python version"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ [ package ] ]
name = "google-auth"
2022-09-02 10:10:38 +02:00
version = "2.11.0"
2021-01-08 17:32:39 +01:00
description = "Google Authentication Library"
category = "main"
optional = false
python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*"
[ package . dependencies ]
2022-02-11 11:45:21 +00:00
cachetools = ">=2.0.0,<6.0"
2021-01-08 17:32:39 +01:00
pyasn1-modules = ">=0.2.1"
rsa = { version = ">=3.1.4,<5" , markers = "python_version >= \"3.6\"" }
six = ">=1.9.0"
[ package . extras ]
2022-09-02 10:10:38 +02:00
aiohttp = [ "aiohttp (>=3.6.2,<4.0.0dev)" , "requests (>=2.20.0,<3.0.0dev)" ]
enterprise_cert = [ "cryptography (==36.0.2)" , "pyopenssl (==22.0.0)" ]
2021-08-24 17:33:16 +02:00
pyopenssl = [ "pyopenssl (>=20.0.0)" ]
reauth = [ "pyu2f (>=0.1.5)" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "google-auth-oauthlib"
2022-02-11 11:45:21 +00:00
version = "0.4.6"
2021-01-08 17:32:39 +01:00
description = "Google Authentication Library"
category = "main"
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
2021-08-24 17:33:16 +02:00
google-auth = ">=1.0.0"
2021-01-08 17:32:39 +01:00
requests-oauthlib = ">=0.7.0"
[ package . extras ]
2021-08-24 17:33:16 +02:00
tool = [ "click (>=6.0.0)" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "google-pasta"
version = "0.2.0"
description = "pasta is an AST-based Python refactoring library"
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
six = "*"
[ [ package ] ]
name = "grpcio"
2022-09-02 10:10:38 +02:00
version = "1.48.1"
2021-01-08 17:32:39 +01:00
description = "HTTP/2-based RPC framework"
category = "main"
optional = false
2022-09-02 10:10:38 +02:00
python-versions = ">=3.6"
2021-01-08 17:32:39 +01:00
[ package . dependencies ]
six = ">=1.5.2"
[ package . extras ]
2022-09-02 10:10:38 +02:00
protobuf = [ "grpcio-tools (>=1.48.1)" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "h11"
version = "0.12.0"
description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1"
category = "main"
optional = false
python-versions = ">=3.6"
[ [ package ] ]
name = "h2"
2022-02-11 11:45:21 +00:00
version = "4.1.0"
2021-01-08 17:32:39 +01:00
description = "HTTP/2 State-Machine based protocol implementation"
category = "main"
optional = false
2021-08-27 15:33:01 +02:00
python-versions = ">=3.6.1"
2021-01-08 17:32:39 +01:00
[ package . dependencies ]
2021-08-27 15:33:01 +02:00
hpack = ">=4.0,<5"
hyperframe = ">=6.0,<7"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "h5py"
2022-09-02 15:02:34 +02:00
version = "3.7.0"
2021-01-08 17:32:39 +01:00
description = "Read and write HDF5 files from Python"
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7"
2021-01-08 17:32:39 +01:00
[ package . dependencies ]
2022-09-02 15:02:34 +02:00
numpy = ">=1.14.5"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "hpack"
2021-08-27 15:33:01 +02:00
version = "4.0.0"
2021-01-08 17:32:39 +01:00
description = "Pure-Python HPACK header compression"
category = "main"
optional = false
2021-08-27 15:33:01 +02:00
python-versions = ">=3.6.1"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "httpcore"
2022-02-11 11:45:21 +00:00
version = "0.13.7"
2021-01-08 17:32:39 +01:00
description = "A minimal low-level HTTP client."
category = "main"
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
2022-02-11 11:45:21 +00:00
anyio = ">=3.0.0,<4.0.0"
2021-08-27 15:33:01 +02:00
h11 = ">=0.11,<0.13"
2021-01-08 17:32:39 +01:00
sniffio = ">=1.0.0,<2.0.0"
[ package . extras ]
http2 = [ "h2 (>=3,<5)" ]
[ [ package ] ]
name = "httpx"
2021-08-27 15:33:01 +02:00
version = "0.19.0"
2021-01-08 17:32:39 +01:00
description = "The next generation HTTP client."
category = "main"
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
certifi = "*"
2021-08-27 15:33:01 +02:00
charset-normalizer = "*"
h2 = { version = ">=3,<5" , optional = true , markers = "extra == \"http2\"" }
httpcore = ">=0.13.3,<0.14.0"
2021-01-08 17:32:39 +01:00
rfc3986 = { version = ">=1.3,<2" , extras = [ "idna2008" ] }
sniffio = "*"
[ package . extras ]
2022-09-02 10:10:38 +02:00
brotli = [ "brotli" , "brotlicffi" ]
2021-08-27 15:33:01 +02:00
http2 = [ "h2 (>=3,<5)" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "hyperframe"
2021-08-27 15:33:01 +02:00
version = "6.0.1"
2021-01-08 17:32:39 +01:00
description = "HTTP/2 framing layer for Python"
category = "main"
optional = false
2021-08-27 15:33:01 +02:00
python-versions = ">=3.6.1"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "idna"
2022-09-02 15:02:34 +02:00
version = "3.3"
2021-01-08 17:32:39 +01:00
description = "Internationalized Domain Names in Applications (IDNA)"
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.5"
2021-08-27 15:33:01 +02:00
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "importlib-metadata"
2021-08-24 17:33:16 +02:00
version = "3.10.1"
2021-01-08 17:32:39 +01:00
description = "Read metadata from Python packages"
category = "main"
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
typing-extensions = { version = ">=3.6.4" , markers = "python_version < \"3.8\"" }
zipp = ">=0.5"
[ package . extras ]
2022-09-02 10:10:38 +02:00
docs = [ "jaraco.packaging (>=8.2)" , "rst.linker (>=1.9)" , "sphinx" ]
testing = [ "flufl.flake8" , "importlib-resources (>=1.3)" , "packaging" , "pep517" , "pyfakefs" , "pytest (>=4.6)" , "pytest-black (>=0.3.7)" , "pytest-checkdocs (>=2.4)" , "pytest-cov" , "pytest-enabler (>=1.0.1)" , "pytest-flake8" , "pytest-mypy" ]
2021-01-08 19:04:15 +01:00
2021-08-27 15:33:01 +02:00
[ [ package ] ]
name = "importlib-resources"
2022-09-02 15:02:34 +02:00
version = "5.9.0"
2021-08-27 15:33:01 +02:00
description = "Read resources from Python packages"
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7"
2021-08-27 15:33:01 +02:00
[ package . dependencies ]
2022-09-02 15:02:34 +02:00
zipp = { version = ">=3.1.0" , markers = "python_version < \"3.10\"" }
2021-08-27 15:33:01 +02:00
[ package . extras ]
2022-09-02 15:02:34 +02:00
docs = [ "jaraco.packaging (>=9)" , "jaraco.tidelift (>=1.4)" , "rst.linker (>=1.9)" , "sphinx" ]
testing = [ "pytest (>=6)" , "pytest-black (>=0.3.7)" , "pytest-checkdocs (>=2.4)" , "pytest-cov" , "pytest-enabler (>=1.3)" , "pytest-flake8" , "pytest-mypy (>=0.9.1)" ]
2021-08-27 15:33:01 +02:00
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "iniconfig"
version = "1.1.1"
description = "iniconfig: brain-dead simple config-ini parsing"
category = "dev"
optional = false
python-versions = "*"
[ [ package ] ]
name = "isort"
2022-02-11 11:45:21 +00:00
version = "5.10.1"
2021-01-08 17:32:39 +01:00
description = "A Python utility / library to sort Python imports."
category = "dev"
optional = false
2021-08-24 17:33:16 +02:00
python-versions = ">=3.6.1,<4.0"
2021-01-08 17:32:39 +01:00
[ package . extras ]
colors = [ "colorama (>=0.4.3,<0.5.0)" ]
2022-09-02 10:10:38 +02:00
pipfile_deprecated_finder = [ "pipreqs" , "requirementslib" ]
2021-08-24 17:33:16 +02:00
plugins = [ "setuptools" ]
2022-09-02 10:10:38 +02:00
requirements_deprecated_finder = [ "pip-api" , "pipreqs" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "joblib"
2022-02-11 11:45:21 +00:00
version = "1.1.0"
2021-01-08 17:32:39 +01:00
description = "Lightweight pipelining with Python functions"
category = "main"
optional = false
python-versions = ">=3.6"
[ [ package ] ]
name = "jsonschema"
2022-09-02 15:02:34 +02:00
version = "4.15.0"
2021-01-08 17:32:39 +01:00
description = "An implementation of JSON Schema validation for Python"
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7"
2021-01-08 17:32:39 +01:00
[ package . dependencies ]
attrs = ">=17.4.0"
importlib-metadata = { version = "*" , markers = "python_version < \"3.8\"" }
2022-09-02 15:02:34 +02:00
importlib-resources = { version = ">=1.4.0" , markers = "python_version < \"3.9\"" }
pkgutil-resolve-name = { version = ">=1.3.10" , 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"
typing-extensions = { version = "*" , markers = "python_version < \"3.8\"" }
2021-01-08 17:32:39 +01:00
[ package . extras ]
2022-09-02 15:02:34 +02: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-01-08 17:32:39 +01:00
2021-08-24 17:33:16 +02:00
[ [ package ] ]
2022-09-02 10:10:38 +02:00
name = "keras"
2022-09-02 18:05:03 +02:00
version = "2.9.0"
2022-09-02 10:10:38 +02:00
description = "Deep learning for humans."
2021-08-24 17:33:16 +02:00
category = "main"
optional = false
python-versions = "*"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
2022-09-02 10:10:38 +02:00
name = "Keras-Preprocessing"
2021-01-08 17:32:39 +01:00
version = "1.1.2"
description = "Easy data preprocessing and data augmentation for deep learning models"
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
numpy = ">=1.9.1"
six = ">=1.9.0"
[ package . extras ]
2022-09-02 10:10:38 +02:00
image = [ "Pillow (>=5.2.0)" , "scipy (>=0.14)" ]
2021-01-08 17:32:39 +01:00
pep8 = [ "flake8" ]
2022-09-02 10:10:38 +02:00
tests = [ "Pillow" , "keras" , "pandas" , "pytest" , "pytest-cov" , "pytest-xdist" , "tensorflow" ]
[ [ package ] ]
name = "libclang"
version = "14.0.6"
description = "Clang Python Bindings, mirrored from the official LLVM repo: https://github.com/llvm/llvm-project/tree/main/clang/bindings/python, to make the installation process easier."
category = "main"
optional = false
python-versions = "*"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "librosa"
2022-09-02 10:10:38 +02:00
version = "0.8.1"
2021-01-08 17:32:39 +01:00
description = "Python module for audio and music processing"
category = "main"
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
audioread = ">=2.0.0"
decorator = ">=3.0.0"
joblib = ">=0.14"
numba = ">=0.43.0"
numpy = ">=1.15.0"
2022-09-02 10:10:38 +02:00
packaging = ">=20.0"
2021-01-08 17:32:39 +01:00
pooch = ">=1.0"
resampy = ">=0.2.2"
scikit-learn = ">=0.14.0,<0.19.0 || >0.19.0"
scipy = ">=1.0.0"
2022-09-02 10:10:38 +02:00
soundfile = ">=0.10.2"
2021-01-08 17:32:39 +01:00
[ package . extras ]
display = [ "matplotlib (>=1.5)" ]
2022-09-02 10:10:38 +02:00
docs = [ "matplotlib (>=2.0.0,<3.3)" , "numba (<0.50)" , "numpydoc" , "presets" , "sphinx (!=1.3.1)" , "sphinx-gallery (>=0.7)" , "sphinx-multiversion (>=0.2.3)" , "sphinx-rtd-theme (>=0.5.0,<0.6.0)" , "spinxcontrib-svg2pdfconverter" ]
tests = [ "contextlib2" , "matplotlib (>=3.0)" , "pytest" , "pytest-cov" , "pytest-mpl" , "samplerate" , "soxr" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "llvmlite"
2022-09-02 15:02:34 +02:00
version = "0.38.1"
2021-01-08 17:32:39 +01:00
description = "lightweight wrapper around basic LLVM functionality"
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7,<3.11"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
2022-09-02 10:10:38 +02:00
name = "Markdown"
version = "3.3.4"
2021-01-08 17:32:39 +01:00
description = "Python implementation of Markdown."
category = "main"
optional = false
python-versions = ">=3.6"
2022-09-02 10:10:38 +02:00
[ package . dependencies ]
importlib-metadata = { version = "*" , markers = "python_version < \"3.8\"" }
2021-01-08 17:32:39 +01:00
[ package . extras ]
testing = [ "coverage" , "pyyaml" ]
2022-09-02 15:02:34 +02:00
[ [ package ] ]
name = "MarkupSafe"
version = "2.1.1"
description = "Safely add untrusted strings to HTML/XML markup."
category = "main"
optional = false
python-versions = ">=3.7"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "musdb"
version = "0.3.1"
description = "Python parser for the SIGSEP MUSDB18 dataset"
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
numpy = ">=1.7"
pyaml = "*"
soundfile = ">=0.9.0"
stempeg = ">=0.1.7"
tqdm = "*"
[ package . extras ]
dev = [ "check-manifest" ]
2022-09-02 10:10:38 +02:00
docs = [ "recommonmark" , "sphinx" , "sphinx-rtd-theme" ]
2021-01-08 17:32:39 +01:00
tests = [ "pytest" , "pytest-pep8" ]
[ [ package ] ]
name = "museval"
version = "0.3.0"
description = "Evaluation tools for the SIGSEP MUS database"
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
jsonschema = "*"
musdb = ">=0.3.0"
numpy = "*"
pandas = ">=0.25.0"
scipy = "*"
simplejson = "*"
soundfile = "*"
[ package . extras ]
dev = [ "check-manifest" ]
2022-09-02 10:10:38 +02:00
docs = [ "numpydoc" , "recommonmark" , "sphinx" , "sphinx-rtd-theme" ]
2021-01-08 17:32:39 +01:00
tests = [ "pytest" , "pytest-pep8" ]
[ [ package ] ]
name = "mypy"
version = "0.790"
description = "Optional static typing for Python"
category = "dev"
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"
version = "0.4.3"
description = "Experimental type system extensions for programs checked with the mypy typechecker."
category = "dev"
optional = false
python-versions = "*"
[ [ package ] ]
name = "norbert"
version = "0.2.1"
description = "Painless Wiener Filters"
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
scipy = "*"
[ package . extras ]
dev = [ "check-manifest" ]
2022-09-02 10:10:38 +02:00
docs = [ "numpydoc" , "recommonmark" , "sphinx" , "sphinx-rtd-theme" ]
2021-01-08 17:32:39 +01:00
tests = [ "pytest" , "pytest-pep8" ]
[ [ package ] ]
name = "numba"
2022-09-02 15:02:34 +02:00
version = "0.55.2"
2021-01-08 17:32:39 +01:00
description = "compiling Python code using LLVM"
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7,<3.11"
2021-01-08 17:32:39 +01:00
[ package . dependencies ]
2022-09-02 15:02:34 +02:00
llvmlite = ">=0.38.0rc1,<0.39"
numpy = ">=1.18,<1.23"
2022-09-02 10:10:38 +02:00
setuptools = "*"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "numpy"
2022-09-02 15:56:40 +02:00
version = "1.21.6"
2021-01-08 17:32:39 +01:00
description = "NumPy is the fundamental package for array computing with Python."
category = "main"
optional = false
2022-09-02 15:56:40 +02:00
python-versions = ">=3.7,<3.11"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "oauthlib"
2022-02-11 11:45:21 +00:00
version = "3.2.0"
2021-01-08 17:32:39 +01:00
description = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic"
category = "main"
optional = false
2021-08-24 17:33:16 +02:00
python-versions = ">=3.6"
2021-01-08 17:32:39 +01:00
[ package . extras ]
2022-02-11 11:45:21 +00:00
rsa = [ "cryptography (>=3.0.0)" ]
2021-08-24 17:33:16 +02:00
signals = [ "blinker (>=1.4.0)" ]
2022-02-11 11:45:21 +00:00
signedtoken = [ "cryptography (>=3.0.0)" , "pyjwt (>=2.0.0,<3)" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "opt-einsum"
version = "3.3.0"
description = "Optimizing numpys einsum function"
category = "main"
optional = false
python-versions = ">=3.5"
[ package . dependencies ]
numpy = ">=1.7"
[ package . extras ]
2022-09-02 10:10:38 +02:00
docs = [ "numpydoc" , "sphinx (==1.2.3)" , "sphinx-rtd-theme" , "sphinxcontrib-napoleon" ]
2021-01-08 17:32:39 +01:00
tests = [ "pytest" , "pytest-cov" , "pytest-pep8" ]
[ [ package ] ]
name = "packaging"
2022-02-11 11:45:21 +00:00
version = "21.3"
2021-01-08 17:32:39 +01:00
description = "Core utilities for Python packages"
category = "main"
optional = false
2021-08-24 17:33:16 +02:00
python-versions = ">=3.6"
2021-01-08 17:32:39 +01:00
[ package . dependencies ]
2022-02-11 11:45:21 +00:00
pyparsing = ">=2.0.2,<3.0.5 || >3.0.5"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "pandas"
2022-09-05 09:54:45 +02:00
version = "1.3.5"
2021-01-08 17:32:39 +01:00
description = "Powerful data structures for data analysis, time series, and statistics"
category = "main"
optional = false
2022-09-05 09:54:45 +02:00
python-versions = ">=3.7.1"
2021-01-08 17:32:39 +01:00
[ package . dependencies ]
2022-09-05 09:54:45 +02:00
numpy = [
{ version = ">=1.17.3" , markers = "platform_machine != \"aarch64\" and platform_machine != \"arm64\" and python_version < \"3.10\"" } ,
{ version = ">=1.19.2" , markers = "platform_machine == \"aarch64\" and python_version < \"3.10\"" } ,
{ version = ">=1.20.0" , markers = "platform_machine == \"arm64\" and python_version < \"3.10\"" } ,
{ version = ">=1.21.0" , markers = "python_version >= \"3.10\"" } ,
]
2021-01-08 17:32:39 +01:00
python-dateutil = ">=2.7.3"
2022-09-05 09:54:45 +02:00
pytz = ">=2017.3"
2021-01-08 17:32:39 +01:00
[ package . extras ]
2022-09-05 09:54:45 +02:00
test = [ "hypothesis (>=3.58)" , "pytest (>=6.0)" , "pytest-xdist" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "pathspec"
2022-09-02 15:02:34 +02:00
version = "0.10.0"
2021-01-08 17:32:39 +01:00
description = "Utility library for gitignore style pattern matching of file paths."
category = "dev"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7"
[ [ package ] ]
name = "pkgutil_resolve_name"
version = "1.3.10"
description = "Resolve a name to an object."
category = "main"
optional = false
python-versions = ">=3.6"
2021-01-08 17:32:39 +01:00
2022-09-02 10:10:38 +02:00
[ [ package ] ]
name = "platformdirs"
2022-09-02 15:02:34 +02:00
version = "2.5.2"
2022-09-02 10:10:38 +02:00
description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
category = "dev"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7"
2022-09-02 10:10:38 +02:00
[ package . extras ]
2022-09-02 15:02:34 +02:00
docs = [ "furo (>=2021.7.5b38)" , "proselint (>=0.10.2)" , "sphinx (>=4)" , "sphinx-autodoc-typehints (>=1.12)" ]
2022-09-02 10:10:38 +02:00
test = [ "appdirs (==1.4.4)" , "pytest (>=6)" , "pytest-cov (>=2.7)" , "pytest-mock (>=3.6)" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "pluggy"
2022-02-11 11:45:21 +00:00
version = "1.0.0"
2021-01-08 17:32:39 +01:00
description = "plugin and hook calling mechanisms for python"
category = "dev"
optional = false
2022-02-11 11:45:21 +00:00
python-versions = ">=3.6"
2021-01-08 17:32:39 +01:00
[ package . dependencies ]
importlib-metadata = { version = ">=0.12" , markers = "python_version < \"3.8\"" }
[ package . extras ]
dev = [ "pre-commit" , "tox" ]
2022-02-11 11:45:21 +00:00
testing = [ "pytest" , "pytest-benchmark" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "pooch"
2022-02-11 11:45:21 +00:00
version = "1.6.0"
description = "\"Pooch manages your Python library's sample data files: it automatically downloads and stores them in a local directory, with support for versioning and corruption checks.\""
2021-01-08 17:32:39 +01:00
category = "main"
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
2022-02-11 11:45:21 +00:00
appdirs = ">=1.3.0"
packaging = ">=20.0"
requests = ">=2.19.0"
[ package . extras ]
progress = [ "tqdm (>=4.41.0,<5.0.0)" ]
sftp = [ "paramiko (>=2.7.0)" ]
xxhash = [ "xxhash (>=1.4.3)" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "protobuf"
2022-09-02 15:02:34 +02:00
version = "3.20.1"
2021-01-08 17:32:39 +01:00
description = "Protocol Buffers"
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "py"
2022-02-11 11:45:21 +00:00
version = "1.11.0"
2021-01-08 17:32:39 +01:00
description = "library with cross-python path, ini-parsing, io, code, log facilities"
category = "dev"
optional = false
2022-02-11 11:45:21 +00:00
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "pyaml"
2022-02-11 11:45:21 +00:00
version = "21.10.1"
2021-01-08 17:32:39 +01:00
description = "PyYAML-based module to produce pretty and readable YAML-serialized data"
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
PyYAML = "*"
[ [ package ] ]
name = "pyasn1"
version = "0.4.8"
description = "ASN.1 types and codecs"
category = "main"
optional = false
python-versions = "*"
[ [ package ] ]
name = "pyasn1-modules"
version = "0.2.8"
description = "A collection of ASN.1-based protocols modules."
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
pyasn1 = ">=0.4.6,<0.5.0"
[ [ package ] ]
name = "pycparser"
2022-02-11 11:45:21 +00:00
version = "2.21"
2021-01-08 17:32:39 +01:00
description = "C parser in Python"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ [ package ] ]
name = "pyparsing"
2022-09-02 15:02:34 +02:00
version = "3.0.9"
description = "pyparsing module - Classes and methods to define and execute parsing grammars"
2021-01-08 17:32:39 +01:00
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.6.8"
2022-02-11 11:45:21 +00:00
[ package . extras ]
diagrams = [ "jinja2" , "railroad-diagrams" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "pyrsistent"
2022-09-02 15:02:34 +02:00
version = "0.18.1"
2021-01-08 17:32:39 +01:00
description = "Persistent/Functional/Immutable data structures"
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "pytest"
2022-02-11 11:45:21 +00:00
version = "6.2.5"
2021-01-08 17:32:39 +01:00
description = "pytest: simple powerful testing with Python"
category = "dev"
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
atomicwrites = { version = ">=1.0" , markers = "sys_platform == \"win32\"" }
attrs = ">=19.2.0"
colorama = { version = "*" , markers = "sys_platform == \"win32\"" }
importlib-metadata = { version = ">=0.12" , markers = "python_version < \"3.8\"" }
iniconfig = "*"
packaging = "*"
2022-02-11 11:45:21 +00:00
pluggy = ">=0.12,<2.0"
2021-01-08 17:32:39 +01:00
py = ">=1.8.2"
toml = "*"
[ package . extras ]
testing = [ "argcomplete" , "hypothesis (>=3.56)" , "mock" , "nose" , "requests" , "xmlschema" ]
[ [ package ] ]
name = "pytest-forked"
2022-02-11 11:45:21 +00:00
version = "1.4.0"
2021-01-08 17:32:39 +01:00
description = "run tests in isolated forked subprocesses"
category = "dev"
optional = false
2022-02-11 11:45:21 +00:00
python-versions = ">=3.6"
2021-01-08 17:32:39 +01:00
[ package . dependencies ]
py = "*"
pytest = ">=3.10"
[ [ package ] ]
name = "python-dateutil"
2021-08-24 17:33:16 +02:00
version = "2.8.2"
2021-01-08 17:32:39 +01:00
description = "Extensions to the standard Python datetime module"
category = "main"
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
[ package . dependencies ]
six = ">=1.5"
[ [ package ] ]
name = "pytz"
2022-09-02 10:10:38 +02:00
version = "2022.2.1"
2021-01-08 17:32:39 +01:00
description = "World timezone definitions, modern and historical"
category = "main"
optional = false
python-versions = "*"
[ [ package ] ]
2022-09-02 10:10:38 +02:00
name = "PyYAML"
2022-02-11 11:45:21 +00:00
version = "6.0"
2021-01-08 17:32:39 +01:00
description = "YAML parser and emitter for Python"
category = "main"
optional = false
2022-02-11 11:45:21 +00:00
python-versions = ">=3.6"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "requests"
2022-09-02 15:02:34 +02:00
version = "2.28.1"
2021-01-08 17:32:39 +01:00
description = "Python HTTP for Humans."
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7, <4"
2021-01-08 17:32:39 +01:00
[ package . dependencies ]
certifi = ">=2017.4.17"
2022-09-02 15:02:34 +02:00
charset-normalizer = ">=2,<3"
idna = ">=2.5,<4"
2021-01-08 17:32:39 +01:00
urllib3 = ">=1.21.1,<1.27"
[ package . extras ]
2022-09-02 15:02:34 +02:00
socks = [ "PySocks (>=1.5.6,!=1.5.7)" ]
use_chardet_on_py3 = [ "chardet (>=3.0.2,<6)" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "requests-oauthlib"
2022-02-11 11:45:21 +00:00
version = "1.3.1"
2021-01-08 17:32:39 +01:00
description = "OAuthlib authentication support for Requests."
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
[ package . dependencies ]
oauthlib = ">=3.0.0"
requests = ">=2.0.0"
[ package . extras ]
rsa = [ "oauthlib[signedtoken] (>=3.0.0)" ]
[ [ package ] ]
name = "resampy"
2022-09-02 10:10:38 +02:00
version = "0.4.0"
2021-01-08 17:32:39 +01:00
description = "Efficient signal resampling"
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
2022-09-02 10:10:38 +02:00
numba = ">=0.53"
numpy = ">=1.17"
2021-01-08 17:32:39 +01:00
[ package . extras ]
2022-09-02 10:10:38 +02:00
design = [ "optuna (>=2.10.0)" ]
docs = [ "numpydoc" , "sphinx (!=1.3.1)" ]
tests = [ "pytest (<8)" , "pytest-cov" , "scipy (>=1.0)" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "rfc3986"
2021-08-24 17:33:16 +02:00
version = "1.5.0"
2021-01-08 17:32:39 +01:00
description = "Validating URI References per RFC 3986"
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
idna = { version = "*" , optional = true , markers = "extra == \"idna2008\"" }
[ package . extras ]
idna2008 = [ "idna" ]
[ [ package ] ]
name = "rsa"
2022-09-02 10:10:38 +02:00
version = "4.9"
2021-01-08 17:32:39 +01:00
description = "Pure-Python RSA implementation"
category = "main"
optional = false
2022-02-11 11:45:21 +00:00
python-versions = ">=3.6,<4"
2021-01-08 17:32:39 +01:00
[ package . dependencies ]
pyasn1 = ">=0.1.3"
[ [ package ] ]
name = "scikit-learn"
2022-09-02 15:02:34 +02:00
version = "1.0.2"
2021-01-08 17:32:39 +01:00
description = "A set of python modules for machine learning and data mining"
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7"
2021-01-08 17:32:39 +01:00
[ package . dependencies ]
joblib = ">=0.11"
2022-09-02 15:02:34 +02:00
numpy = ">=1.14.6"
scipy = ">=1.1.0"
2021-01-08 17:32:39 +01:00
threadpoolctl = ">=2.0.0"
[ package . extras ]
2022-09-02 15:02:34 +02:00
benchmark = [ "matplotlib (>=2.2.3)" , "memory-profiler (>=0.57.0)" , "pandas (>=0.25.0)" ]
docs = [ "Pillow (>=7.1.2)" , "matplotlib (>=2.2.3)" , "memory-profiler (>=0.57.0)" , "numpydoc (>=1.0.0)" , "pandas (>=0.25.0)" , "scikit-image (>=0.14.5)" , "seaborn (>=0.9.0)" , "sphinx (>=4.0.1)" , "sphinx-gallery (>=0.7.0)" , "sphinx-prompt (>=1.3.0)" , "sphinxext-opengraph (>=0.4.2)" ]
examples = [ "matplotlib (>=2.2.3)" , "pandas (>=0.25.0)" , "scikit-image (>=0.14.5)" , "seaborn (>=0.9.0)" ]
tests = [ "black (>=21.6b0)" , "flake8 (>=3.8.2)" , "matplotlib (>=2.2.3)" , "mypy (>=0.770)" , "pandas (>=0.25.0)" , "pyamg (>=4.0.0)" , "pytest (>=5.0.1)" , "pytest-cov (>=2.9.0)" , "scikit-image (>=0.14.5)" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "scipy"
2022-09-02 15:02:34 +02:00
version = "1.7.3"
2021-01-08 17:32:39 +01:00
description = "SciPy: Scientific Library for Python"
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7,<3.11"
2021-01-08 17:32:39 +01:00
[ package . dependencies ]
2022-09-02 15:02:34 +02:00
numpy = ">=1.16.5,<1.23.0"
2021-01-08 17:32:39 +01:00
2022-09-02 10:10:38 +02:00
[ [ package ] ]
name = "setuptools"
2022-09-02 15:02:34 +02:00
version = "65.3.0"
2022-09-02 10:10:38 +02:00
description = "Easily download, build, install, upgrade, and uninstall Python packages"
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7"
2022-09-02 10:10:38 +02:00
[ package . extras ]
2022-09-02 15:02:34 +02:00
docs = [ "furo" , "jaraco.packaging (>=9)" , "jaraco.tidelift (>=1.4)" , "pygments-github-lexers (==0.0.5)" , "rst.linker (>=1.9)" , "sphinx" , "sphinx-favicon" , "sphinx-hoverxref (<2)" , "sphinx-inline-tabs" , "sphinx-notfound-page (==0.8.3)" , "sphinx-reredirects" , "sphinxcontrib-towncrier" ]
testing = [ "build[virtualenv]" , "filelock (>=3.4.0)" , "flake8 (<5)" , "flake8-2020" , "ini2toml[lite] (>=0.9)" , "jaraco.envs (>=2.2)" , "jaraco.path (>=3.2.0)" , "mock" , "pip (>=19.1)" , "pip-run (>=8.8)" , "pytest (>=6)" , "pytest-black (>=0.3.7)" , "pytest-checkdocs (>=2.4)" , "pytest-cov" , "pytest-enabler (>=1.3)" , "pytest-flake8" , "pytest-mypy (>=0.9.1)" , "pytest-perf" , "pytest-xdist" , "tomli-w (>=1.0.0)" , "virtualenv (>=13.0.0)" , "wheel" ]
testing-integration = [ "build[virtualenv]" , "filelock (>=3.4.0)" , "jaraco.envs (>=2.2)" , "jaraco.path (>=3.2.0)" , "pytest" , "pytest-enabler" , "pytest-xdist" , "tomli" , "virtualenv (>=13.0.0)" , "wheel" ]
2022-09-02 10:10:38 +02:00
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "simplejson"
2022-02-11 11:45:21 +00:00
version = "3.17.6"
2021-01-08 17:32:39 +01:00
description = "Simple, fast, extensible JSON encoder/decoder for Python"
category = "main"
optional = false
python-versions = ">=2.5, !=3.0.*, !=3.1.*, !=3.2.*"
[ [ package ] ]
name = "six"
2022-09-02 10:10:38 +02:00
version = "1.16.0"
2021-01-08 17:32:39 +01:00
description = "Python 2 and 3 compatibility utilities"
category = "main"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
[ [ package ] ]
name = "sniffio"
2022-09-02 15:02:34 +02:00
version = "1.3.0"
2021-01-08 17:32:39 +01:00
description = "Sniff out which async library your code is running under"
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7"
2021-08-27 15:33:01 +02:00
2021-01-08 17:32:39 +01:00
[ [ package ] ]
2022-09-02 10:10:38 +02:00
name = "SoundFile"
2021-01-08 17:32:39 +01:00
version = "0.10.3.post1"
description = "An audio library based on libsndfile, CFFI and NumPy"
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
cffi = ">=1.0"
[ package . extras ]
numpy = [ "numpy" ]
[ [ package ] ]
name = "stempeg"
2021-08-24 17:33:16 +02:00
version = "0.2.3"
2021-01-08 17:32:39 +01:00
description = "Read and write stem/multistream audio files"
category = "main"
optional = false
python-versions = "*"
[ package . dependencies ]
ffmpeg-python = ">=0.2.0"
numpy = ">=1.6"
[ package . extras ]
tests = [ "pytest" ]
[ [ package ] ]
name = "tensorboard"
2022-09-02 15:02:34 +02:00
version = "2.9.0"
2021-01-08 17:32:39 +01:00
description = "TensorBoard lets you watch Tensors Flow"
category = "main"
optional = false
2021-08-24 17:33:16 +02:00
python-versions = ">=3.6"
2021-01-08 17:32:39 +01:00
[ package . dependencies ]
absl-py = ">=0.4"
2022-02-11 11:45:21 +00:00
google-auth = ">=1.6.3,<3"
2021-01-08 17:32:39 +01:00
google-auth-oauthlib = ">=0.4.1,<0.5"
grpcio = ">=1.24.3"
markdown = ">=2.6.8"
numpy = ">=1.12.0"
2022-09-02 15:02:34 +02:00
protobuf = ">=3.9.2"
2021-01-08 17:32:39 +01:00
requests = ">=2.21.0,<3"
2022-09-02 10:10:38 +02:00
setuptools = ">=41.0.0"
2021-08-24 17:33:16 +02:00
tensorboard-data-server = ">=0.6.0,<0.7.0"
2021-01-08 17:32:39 +01:00
tensorboard-plugin-wit = ">=1.6.0"
2022-09-02 10:10:38 +02:00
werkzeug = ">=1.0.1"
wheel = ">=0.26"
2021-01-08 17:32:39 +01:00
2021-08-24 17:33:16 +02:00
[ [ package ] ]
name = "tensorboard-data-server"
version = "0.6.1"
description = "Fast data loading for TensorBoard"
category = "main"
optional = false
python-versions = ">=3.6"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "tensorboard-plugin-wit"
2022-02-11 11:45:21 +00:00
version = "1.8.1"
2021-01-08 17:32:39 +01:00
description = "What-If Tool TensorBoard plugin."
category = "main"
optional = false
python-versions = "*"
[ [ package ] ]
name = "tensorflow"
2022-09-02 18:05:03 +02:00
version = "2.9.0"
2021-01-08 17:32:39 +01:00
description = "TensorFlow is an open source machine learning framework for everyone."
category = "main"
optional = false
2022-09-02 18:05:03 +02:00
python-versions = ">=3.7"
2021-01-08 17:32:39 +01:00
[ package . dependencies ]
2022-09-02 18:05:03 +02:00
absl-py = ">=1.0.0"
2022-09-02 10:10:38 +02:00
astunparse = ">=1.6.0"
2022-09-02 18:05:03 +02:00
flatbuffers = ">=1.12,<2"
gast = ">=0.2.1,<=0.4.0"
2022-09-02 10:10:38 +02:00
google-pasta = ">=0.1.1"
grpcio = ">=1.24.3,<2.0"
h5py = ">=2.9.0"
2022-09-02 18:05:03 +02:00
keras = ">=2.9.0rc0,<2.10.0"
2022-09-02 10:10:38 +02:00
keras-preprocessing = ">=1.1.1"
2022-09-02 18:05:03 +02:00
libclang = ">=13.0.0"
numpy = ">=1.20"
2022-09-02 10:10:38 +02:00
opt-einsum = ">=2.3.2"
2022-09-02 18:05:03 +02:00
packaging = "*"
2022-09-02 15:02:34 +02:00
protobuf = ">=3.9.2"
2022-09-02 18:05:03 +02:00
setuptools = "*"
2022-09-02 10:10:38 +02:00
six = ">=1.12.0"
2022-09-02 18:05:03 +02:00
tensorboard = ">=2.9,<2.10"
tensorflow-estimator = ">=2.9.0rc0,<2.10.0"
tensorflow-io-gcs-filesystem = ">=0.23.1"
2022-09-02 10:10:38 +02:00
termcolor = ">=1.1.0"
typing-extensions = ">=3.6.6"
wrapt = ">=1.11.0"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "tensorflow-estimator"
2022-09-02 18:05:03 +02:00
version = "2.9.0"
2021-01-08 17:32:39 +01:00
description = "TensorFlow Estimator."
category = "main"
optional = false
2022-09-02 18:05:03 +02:00
python-versions = ">=3.7"
2021-01-08 17:32:39 +01:00
2022-09-02 10:10:38 +02:00
[ [ package ] ]
name = "tensorflow-io-gcs-filesystem"
2022-09-02 15:02:34 +02:00
version = "0.26.0"
2022-09-02 10:10:38 +02:00
description = "TensorFlow IO"
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7, <3.11"
2022-09-02 10:10:38 +02:00
[ package . extras ]
2022-09-02 15:02:34 +02:00
tensorflow = [ "tensorflow (>=2.9.0,<2.10.0)" ]
tensorflow-aarch64 = [ "tensorflow-aarch64 (>=2.9.0,<2.10.0)" ]
tensorflow-cpu = [ "tensorflow-cpu (>=2.9.0,<2.10.0)" ]
tensorflow-gpu = [ "tensorflow-gpu (>=2.9.0,<2.10.0)" ]
tensorflow-rocm = [ "tensorflow-rocm (>=2.9.0,<2.10.0)" ]
2022-09-02 10:10:38 +02:00
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "termcolor"
version = "1.1.0"
description = "ANSII Color formatting for output in terminal."
category = "main"
optional = false
python-versions = "*"
[ [ package ] ]
name = "threadpoolctl"
2022-02-11 11:45:21 +00:00
version = "3.1.0"
2021-01-08 17:32:39 +01:00
description = "threadpoolctl"
category = "main"
optional = false
2021-08-24 17:33:16 +02:00
python-versions = ">=3.6"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "toml"
version = "0.10.2"
description = "Python Library for Tom's Obvious, Minimal Language"
category = "dev"
optional = false
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
2022-02-11 11:45:21 +00:00
[ [ package ] ]
name = "tomli"
version = "1.2.3"
description = "A lil' TOML parser"
category = "dev"
optional = false
python-versions = ">=3.6"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "tqdm"
2022-09-02 10:10:38 +02:00
version = "4.64.0"
2021-01-08 17:32:39 +01:00
description = "Fast, Extensible Progress Meter"
category = "main"
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7"
2021-08-24 17:33:16 +02:00
[ package . dependencies ]
colorama = { version = "*" , markers = "platform_system == \"Windows\"" }
2021-01-08 17:32:39 +01:00
[ package . extras ]
dev = [ "py-make (>=0.1.0)" , "twine" , "wheel" ]
2021-08-24 17:33:16 +02:00
notebook = [ "ipywidgets (>=6)" ]
2022-09-02 10:10:38 +02:00
slack = [ "slack-sdk" ]
2021-01-08 17:32:39 +01:00
telegram = [ "requests" ]
[ [ package ] ]
name = "typed-ast"
2021-08-24 17:33:16 +02:00
version = "1.4.3"
2021-01-08 17:32:39 +01:00
description = "a fork of Python 2 and 3 ast modules with type comment support"
category = "dev"
optional = false
python-versions = "*"
[ [ package ] ]
name = "typer"
2022-11-07 12:50:29 +07:00
version = "0.7.0"
2021-01-08 17:32:39 +01:00
description = "Typer, build great CLIs. Easy to code. Based on Python type hints."
category = "main"
optional = false
python-versions = ">=3.6"
[ package . dependencies ]
click = ">=7.1.1,<7.2.0"
[ package . extras ]
all = [ "colorama (>=0.4.3,<0.5.0)" , "shellingham (>=1.3.0,<2.0.0)" ]
dev = [ "autoflake (>=1.3.1,<2.0.0)" , "flake8 (>=3.8.3,<4.0.0)" ]
2022-09-02 10:10:38 +02:00
doc = [ "markdown-include (>=0.5.1,<0.6.0)" , "mkdocs (>=1.1.2,<2.0.0)" , "mkdocs-material (>=5.4.0,<6.0.0)" ]
test = [ "black (>=19.10b0,<20.0b0)" , "coverage (>=5.2,<6.0)" , "isort (>=5.0.6,<6.0.0)" , "mypy (==0.782)" , "pytest (>=4.4.0,<5.4.0)" , "pytest-cov (>=2.10.0,<3.0.0)" , "pytest-sugar (>=0.9.4,<0.10.0)" , "pytest-xdist (>=1.32.0,<2.0.0)" , "shellingham (>=1.3.0,<2.0.0)" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "typing-extensions"
2022-09-02 15:02:34 +02:00
version = "4.3.0"
description = "Backported and Experimental Type Hints for Python 3.7+"
2021-01-08 17:32:39 +01:00
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "urllib3"
2022-09-02 10:10:38 +02:00
version = "1.26.12"
2021-01-08 17:32:39 +01:00
description = "HTTP library with thread-safe connection pooling, file post, and more."
category = "main"
optional = false
2022-09-02 10:10:38 +02:00
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4"
2021-01-08 17:32:39 +01:00
[ package . extras ]
2022-09-02 10:10:38 +02:00
brotli = [ "brotli (>=1.0.9)" , "brotlicffi (>=0.8.0)" , "brotlipy (>=0.6.0)" ]
secure = [ "certifi" , "cryptography (>=1.3.4)" , "idna (>=2.0.0)" , "ipaddress" , "pyOpenSSL (>=0.14)" , "urllib3-secure-extra" ]
2021-01-08 17:32:39 +01:00
socks = [ "PySocks (>=1.5.6,!=1.5.7,<2.0)" ]
[ [ package ] ]
2022-09-02 10:10:38 +02:00
name = "Werkzeug"
2022-09-02 15:02:34 +02:00
version = "2.2.2"
2021-01-08 17:32:39 +01:00
description = "The comprehensive WSGI web application library."
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7"
2021-01-08 17:32:39 +01:00
2021-08-27 15:33:01 +02:00
[ package . dependencies ]
2022-09-02 15:02:34 +02:00
MarkupSafe = ">=2.1.1"
2021-08-27 15:33:01 +02:00
2021-01-08 17:32:39 +01:00
[ package . extras ]
watchdog = [ "watchdog" ]
2022-09-02 10:10:38 +02:00
[ [ package ] ]
name = "wheel"
version = "0.37.1"
description = "A built-package format for Python"
category = "main"
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
[ package . extras ]
test = [ "pytest (>=3.0.0)" , "pytest-cov" ]
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "wrapt"
2022-09-02 10:10:38 +02:00
version = "1.14.1"
2021-01-08 17:32:39 +01:00
description = "Module for decorators, wrappers and monkey patching."
category = "main"
optional = false
2022-09-02 10:10:38 +02:00
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
2021-01-08 17:32:39 +01:00
[ [ package ] ]
name = "zipp"
2022-09-02 15:02:34 +02:00
version = "3.8.1"
2021-01-08 17:32:39 +01:00
description = "Backport of pathlib-compatible object wrapper for zip files"
category = "main"
optional = false
2022-09-02 15:02:34 +02:00
python-versions = ">=3.7"
2021-01-08 17:32:39 +01:00
[ package . extras ]
2022-09-02 15:02:34 +02:00
docs = [ "jaraco.packaging (>=9)" , "jaraco.tidelift (>=1.4)" , "rst.linker (>=1.9)" , "sphinx" ]
testing = [ "func-timeout" , "jaraco.itertools" , "pytest (>=6)" , "pytest-black (>=0.3.7)" , "pytest-checkdocs (>=2.4)" , "pytest-cov" , "pytest-enabler (>=1.3)" , "pytest-flake8" , "pytest-mypy (>=0.9.1)" ]
2021-01-08 17:32:39 +01:00
[ extras ]
evaluation = [ "musdb" , "museval" ]
[ metadata ]
lock-version = "1.1"
2022-09-05 09:54:45 +02:00
python-versions = ">=3.7.1,<3.11"
content-hash = "f1c4f6c540e62e15e1d4ba21aee1aa102437ed9729573fce90e029b5c75d6d58"
2021-01-08 17:32:39 +01:00
[ metadata . files ]
absl-py = [
2022-09-02 10:10:38 +02:00
{ file = "absl-py-1.2.0.tar.gz" , hash = "sha256:f568809938c49abbda89826223c992b630afd23c638160ad7840cfe347710d97" } ,
{ file = "absl_py-1.2.0-py3-none-any.whl" , hash = "sha256:5d15f85b8cc859c6245bc9886ba664460ed96a6fee895416caa37d669ee74a9a" } ,
2022-02-11 11:45:21 +00:00
]
anyio = [
2022-09-02 10:10:38 +02:00
{ file = "anyio-3.6.1-py3-none-any.whl" , hash = "sha256:cb29b9c70620506a9a8f87a309591713446953302d7d995344d0d7c6c0c9a7be" } ,
{ file = "anyio-3.6.1.tar.gz" , hash = "sha256:413adf95f93886e442aea925f3ee43baa5a765a64a0f52c6081894f9992fdd0b" } ,
2021-01-08 17:32:39 +01:00
]
appdirs = [
{ file = "appdirs-1.4.4-py2.py3-none-any.whl" , hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128" } ,
{ file = "appdirs-1.4.4.tar.gz" , hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41" } ,
]
astunparse = [
{ file = "astunparse-1.6.3-py2.py3-none-any.whl" , hash = "sha256:c2652417f2c8b5bb325c885ae329bdf3f86424075c4fd1a128674bc6fba4b8e8" } ,
{ file = "astunparse-1.6.3.tar.gz" , hash = "sha256:5ad93a8456f0d084c3456d059fd9a92cce667963232cbf763eac3bc5b7940872" } ,
]
atomicwrites = [
2022-09-02 10:10:38 +02:00
{ file = "atomicwrites-1.4.1.tar.gz" , hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11" } ,
2021-01-08 17:32:39 +01:00
]
attrs = [
2022-09-02 10:10:38 +02:00
{ file = "attrs-22.1.0-py2.py3-none-any.whl" , hash = "sha256:86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c" } ,
{ file = "attrs-22.1.0.tar.gz" , hash = "sha256:29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6" } ,
2021-01-08 17:32:39 +01:00
]
audioread = [
2022-09-02 10:10:38 +02:00
{ file = "audioread-3.0.0.tar.gz" , hash = "sha256:121995bd207eb1fda3d566beb851d3534275925bc35a4fb6da0cb11de0f7251a" } ,
2021-01-08 17:32:39 +01:00
]
black = [
2022-09-02 10:10:38 +02:00
{ file = "black-21.12b0-py3-none-any.whl" , hash = "sha256:a615e69ae185e08fdd73e4715e260e2479c861b5740057fde6e8b4e3b7dd589f" } ,
{ file = "black-21.12b0.tar.gz" , hash = "sha256:77b80f693a569e2e527958459634f18df9b0ba2625ba4e0c2d5da5be42e6f2b3" } ,
2021-01-08 17:32:39 +01:00
]
cachetools = [
2022-09-02 15:02:34 +02:00
{ file = "cachetools-5.2.0-py3-none-any.whl" , hash = "sha256:f9f17d2aec496a9aa6b76f53e3b614c965223c061982d434d160f930c698a9db" } ,
{ file = "cachetools-5.2.0.tar.gz" , hash = "sha256:6a94c6402995a99c3970cc7e4884bb60b4a8639938157eeed436098bf9831757" } ,
2021-01-08 17:32:39 +01:00
]
certifi = [
2022-09-02 10:10:38 +02:00
{ file = "certifi-2022.6.15-py3-none-any.whl" , hash = "sha256:fe86415d55e84719d75f8b69414f6438ac3547d2078ab91b67e779ef69378412" } ,
{ file = "certifi-2022.6.15.tar.gz" , hash = "sha256:84c85a9078b11105f04f3036a9482ae10e4621616db313fe045dd24743a0820d" } ,
2021-01-08 17:32:39 +01:00
]
cffi = [
2022-09-02 10:10:38 +02:00
{ file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl" , hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2" } ,
{ file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl" , hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2" } ,
{ file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl" , hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914" } ,
{ file = "cffi-1.15.1-cp27-cp27m-win32.whl" , hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3" } ,
{ file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl" , hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e" } ,
{ file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl" , hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162" } ,
{ file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl" , hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b" } ,
{ file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21" } ,
{ file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185" } ,
{ file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd" } ,
{ file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc" } ,
{ file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f" } ,
{ file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e" } ,
{ file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4" } ,
{ file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl" , hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01" } ,
{ file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl" , hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e" } ,
{ file = "cffi-1.15.1-cp310-cp310-win32.whl" , hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2" } ,
{ file = "cffi-1.15.1-cp310-cp310-win_amd64.whl" , hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d" } ,
{ file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl" , hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac" } ,
{ file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl" , hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83" } ,
{ file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9" } ,
{ file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c" } ,
{ file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325" } ,
{ file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c" } ,
{ file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl" , hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef" } ,
{ file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl" , hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8" } ,
{ file = "cffi-1.15.1-cp311-cp311-win32.whl" , hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d" } ,
{ file = "cffi-1.15.1-cp311-cp311-win_amd64.whl" , hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104" } ,
{ file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7" } ,
{ file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6" } ,
{ file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d" } ,
{ file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a" } ,
{ file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl" , hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405" } ,
{ file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl" , hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e" } ,
{ file = "cffi-1.15.1-cp36-cp36m-win32.whl" , hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf" } ,
{ file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl" , hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497" } ,
{ file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375" } ,
{ file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e" } ,
{ file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82" } ,
{ file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b" } ,
{ file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c" } ,
{ file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426" } ,
{ file = "cffi-1.15.1-cp37-cp37m-win32.whl" , hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9" } ,
{ file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl" , hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045" } ,
{ file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3" } ,
{ file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a" } ,
{ file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5" } ,
{ file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca" } ,
{ file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02" } ,
{ file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192" } ,
{ file = "cffi-1.15.1-cp38-cp38-win32.whl" , hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314" } ,
{ file = "cffi-1.15.1-cp38-cp38-win_amd64.whl" , hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5" } ,
{ file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585" } ,
{ file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0" } ,
{ file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415" } ,
{ file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d" } ,
{ file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl" , hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984" } ,
{ file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl" , hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35" } ,
{ file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27" } ,
{ file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl" , hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76" } ,
{ file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl" , hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3" } ,
{ file = "cffi-1.15.1-cp39-cp39-win32.whl" , hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee" } ,
{ file = "cffi-1.15.1-cp39-cp39-win_amd64.whl" , hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c" } ,
{ file = "cffi-1.15.1.tar.gz" , hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9" } ,
]
2021-08-24 17:33:16 +02:00
charset-normalizer = [
2022-09-02 10:10:38 +02:00
{ file = "charset-normalizer-2.1.1.tar.gz" , hash = "sha256:5a3d016c7c547f69d6f81fb0db9449ce888b418b5b9952cc5e6e66843e9dd845" } ,
{ file = "charset_normalizer-2.1.1-py3-none-any.whl" , hash = "sha256:83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f" } ,
2021-01-08 17:32:39 +01: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" } ,
]
colorama = [
2022-09-02 10:10:38 +02:00
{ file = "colorama-0.4.5-py2.py3-none-any.whl" , hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da" } ,
{ file = "colorama-0.4.5.tar.gz" , hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4" } ,
2021-01-08 17:32:39 +01:00
]
decorator = [
2022-02-11 11:45:21 +00:00
{ file = "decorator-5.1.1-py3-none-any.whl" , hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186" } ,
{ file = "decorator-5.1.1.tar.gz" , hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330" } ,
2021-01-08 17:32:39 +01:00
]
ffmpeg-python = [
{ file = "ffmpeg-python-0.2.0.tar.gz" , hash = "sha256:65225db34627c578ef0e11c8b1eb528bb35e024752f6f10b78c011f6f64c4127" } ,
{ file = "ffmpeg_python-0.2.0-py3-none-any.whl" , hash = "sha256:ac441a0404e053f8b6a1113a77c0f452f1cfc62f6344a769475ffdc0f56c23c5" } ,
]
2021-08-24 17:33:16 +02:00
flatbuffers = [
2022-09-02 18:05:03 +02:00
{ file = "flatbuffers-1.12-py2.py3-none-any.whl" , hash = "sha256:9e9ef47fa92625c4721036e7c4124182668dc6021d9e7c73704edd395648deb9" } ,
{ file = "flatbuffers-1.12.tar.gz" , hash = "sha256:63bb9a722d5e373701913e226135b28a6f6ac200d5cc7b4d919fa38d73b44610" } ,
2021-08-24 17:33:16 +02:00
]
2021-01-08 17:32:39 +01:00
future = [
{ file = "future-0.18.2.tar.gz" , hash = "sha256:b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d" } ,
]
gast = [
2021-08-24 17:33:16 +02:00
{ file = "gast-0.4.0-py3-none-any.whl" , hash = "sha256:b7adcdd5adbebf1adf17378da5ba3f543684dbec47b1cda1f3997e573cd542c4" } ,
{ file = "gast-0.4.0.tar.gz" , hash = "sha256:40feb7b8b8434785585ab224d1568b857edb18297e5a3047f1ba012bc83b42c1" } ,
2021-01-08 17:32:39 +01:00
]
google-auth = [
2022-09-02 10:10:38 +02:00
{ file = "google-auth-2.11.0.tar.gz" , hash = "sha256:ed65ecf9f681832298e29328e1ef0a3676e3732b2e56f41532d45f70a22de0fb" } ,
{ file = "google_auth-2.11.0-py2.py3-none-any.whl" , hash = "sha256:be62acaae38d0049c21ca90f27a23847245c9f161ff54ede13af2cb6afecbac9" } ,
2021-01-08 17:32:39 +01:00
]
google-auth-oauthlib = [
2022-02-11 11:45:21 +00:00
{ file = "google-auth-oauthlib-0.4.6.tar.gz" , hash = "sha256:a90a072f6993f2c327067bf65270046384cda5a8ecb20b94ea9a687f1f233a7a" } ,
{ file = "google_auth_oauthlib-0.4.6-py2.py3-none-any.whl" , hash = "sha256:3f2a6e802eebbb6fb736a370fbf3b055edcb6b52878bf2f26330b5e041316c73" } ,
2021-01-08 17:32:39 +01:00
]
google-pasta = [
{ file = "google-pasta-0.2.0.tar.gz" , hash = "sha256:c9f2c8dfc8f96d0d5808299920721be30c9eec37f2389f28904f454565c8a16e" } ,
{ file = "google_pasta-0.2.0-py2-none-any.whl" , hash = "sha256:4612951da876b1a10fe3960d7226f0c7682cf901e16ac06e473b267a5afa8954" } ,
{ file = "google_pasta-0.2.0-py3-none-any.whl" , hash = "sha256:b32482794a366b5366a32c92a9a9201b107821889935a02b3e51f6b432ea84ed" } ,
]
grpcio = [
2022-09-02 10:10:38 +02:00
{ file = "grpcio-1.48.1-cp310-cp310-linux_armv7l.whl" , hash = "sha256:19f9c021ae858d3ef6d5ec4c0acf3f0b0a61e599e5aa36c36943c209520a0e66" } ,
{ file = "grpcio-1.48.1-cp310-cp310-macosx_10_10_x86_64.whl" , hash = "sha256:b0fa666fecdb1b118d37823937e9237afa17fe734fc4dbe6dd642e1e4cca0246" } ,
{ file = "grpcio-1.48.1-cp310-cp310-manylinux_2_17_aarch64.whl" , hash = "sha256:a661d4b9b314327dec1e92ed57e591e8e5eb055700e0ba9e9687f734d922dcb6" } ,
{ file = "grpcio-1.48.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:598c8c42420443c55431eba1821c7a2f72707f1ff674a4de9e0bb03282923cfb" } ,
{ file = "grpcio-1.48.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:1c924d4e0493fd536ba3b82584b370e8b3c809ef341f9f828cff2dc3c761b3ab" } ,
{ file = "grpcio-1.48.1-cp310-cp310-musllinux_1_1_i686.whl" , hash = "sha256:a5edbcb8289681fcb5ded7542f2b7dd456489e83007a95e32fcaf55e9f18603e" } ,
{ file = "grpcio-1.48.1-cp310-cp310-musllinux_1_1_x86_64.whl" , hash = "sha256:9d116106cf220c79e91595523c893f1cf09ec0c2ea49de4fb82152528b7e6833" } ,
{ file = "grpcio-1.48.1-cp310-cp310-win32.whl" , hash = "sha256:5d81cd3c161291339ed3b469250c2f5013c3083dea7796e93aedff8f05fdcec1" } ,
{ file = "grpcio-1.48.1-cp310-cp310-win_amd64.whl" , hash = "sha256:d751f8beb383c4a5a95625d7ccc1ab183b98b02c6a88924814ea7fbff530872d" } ,
{ file = "grpcio-1.48.1-cp36-cp36m-linux_armv7l.whl" , hash = "sha256:1471e6f25a8e47d9f88499f48c565fc5b2876e8ee91bfb0ff33eaadd188b7ea6" } ,
{ file = "grpcio-1.48.1-cp36-cp36m-macosx_10_10_x86_64.whl" , hash = "sha256:9fba1d0ba7cf56811728f1951c800a9aca6677e86433c5e353f2cc2c4039fda6" } ,
{ file = "grpcio-1.48.1-cp36-cp36m-manylinux_2_17_aarch64.whl" , hash = "sha256:f3a99ed422c38bd1bc893cb2cb2cea6d64173ec30927f699e95f5f58bdf625cf" } ,
{ file = "grpcio-1.48.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:b005502c59835f9ba3c3f8742f64c19eeb3db41eae1a89b035a559b39b421803" } ,
{ file = "grpcio-1.48.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:f0ef1dafb4eadeaca58aec8c721a5a73d551064b0c63d57fa003e233277c642e" } ,
{ file = "grpcio-1.48.1-cp36-cp36m-musllinux_1_1_i686.whl" , hash = "sha256:9477967e605ba08715dcc769b5ee0f0d8b22bda40ef25a0df5a8759e5a4d21a5" } ,
{ file = "grpcio-1.48.1-cp36-cp36m-musllinux_1_1_x86_64.whl" , hash = "sha256:dbba883c2b6d63949bc98ab1950bc22cf7c8d4e8cb68de6edde49d3cccd8fd26" } ,
{ file = "grpcio-1.48.1-cp36-cp36m-win32.whl" , hash = "sha256:8bbaa6647986b874891bc682a1093df54cbdb073b5d4b844a2b480c47c7ffafd" } ,
{ file = "grpcio-1.48.1-cp36-cp36m-win_amd64.whl" , hash = "sha256:e02f6ba10a3d4e289fa7ae91b301783a750d118b60f17924ca05e506c7d29bc8" } ,
{ file = "grpcio-1.48.1-cp37-cp37m-linux_armv7l.whl" , hash = "sha256:97dc35a99c61d5f35ec6457d3df0a4695ba9bb04a35686e1c254462b15c53f98" } ,
{ file = "grpcio-1.48.1-cp37-cp37m-macosx_10_10_x86_64.whl" , hash = "sha256:ca382028cdfd2d79b7704b2acb8ae1fb54e9e1a03a6765e1895ba89a6fcfaba1" } ,
{ file = "grpcio-1.48.1-cp37-cp37m-manylinux_2_17_aarch64.whl" , hash = "sha256:3d319a0c89ffac9b8dfc75bfe727a4c835d18bbccc14203b20eb5949c6c7d87d" } ,
{ file = "grpcio-1.48.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:a1b81849061c67c2ffaa6ed27aa3d9b0762e71e68e784e24b0330b7b1c67470a" } ,
{ file = "grpcio-1.48.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:1ff1be0474846ed15682843b187e6062f845ddfeaceb2b28972073f474f7b735" } ,
{ file = "grpcio-1.48.1-cp37-cp37m-musllinux_1_1_i686.whl" , hash = "sha256:53b6306f9473020bc47ddf64ca704356466e63d5f88f5c2a7bf0a4692e7f03c4" } ,
{ file = "grpcio-1.48.1-cp37-cp37m-musllinux_1_1_x86_64.whl" , hash = "sha256:dad2501603f954f222a6e555413c454a5f8d763ab910fbab3855bcdfef6b3148" } ,
{ file = "grpcio-1.48.1-cp37-cp37m-win32.whl" , hash = "sha256:4786323555a9f2c6380cd9a9922bcfd42165a51d68d242eebfcdfdc667651c96" } ,
{ file = "grpcio-1.48.1-cp37-cp37m-win_amd64.whl" , hash = "sha256:934aad7350d9577f4275e787f3d91d3c8ff4efffa8d6b807d343d3c891ff53eb" } ,
{ file = "grpcio-1.48.1-cp38-cp38-linux_armv7l.whl" , hash = "sha256:2563357697f5f2d7fd80c1b07a57ef4736551327ad84de604e7b9f6c1b6b4e20" } ,
{ file = "grpcio-1.48.1-cp38-cp38-macosx_10_10_x86_64.whl" , hash = "sha256:1d065f40fe74b52b88a6c42d4373a0983f1b0090f952a0747f34f2c11d6cbc64" } ,
{ file = "grpcio-1.48.1-cp38-cp38-manylinux_2_17_aarch64.whl" , hash = "sha256:3340cb2224cc397954def015729391d85fb31135b5a7efca363e73e6f1b0e908" } ,
{ file = "grpcio-1.48.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:d03009a26f7edca9f0a581aa5d3153242b815b858cb4790e34a955afb303c6ba" } ,
{ file = "grpcio-1.48.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:53fa2fc1a1713195fa7acf7443a6f59b6ac7837607690f813c66cc18a9cb8135" } ,
{ file = "grpcio-1.48.1-cp38-cp38-musllinux_1_1_i686.whl" , hash = "sha256:5a6a750c8324f3974e95265d3f9a0541573c537af1f67b3f6f46bf9c0b2e1b36" } ,
{ file = "grpcio-1.48.1-cp38-cp38-musllinux_1_1_x86_64.whl" , hash = "sha256:626822d799d8fab08f07c8d95ef5c36213d24143f7cad3f548e97413db9f4110" } ,
{ file = "grpcio-1.48.1-cp38-cp38-win32.whl" , hash = "sha256:ca5209ef89f7607be47a308fa92308cf079805ed556ecda672f00039a26e366f" } ,
{ file = "grpcio-1.48.1-cp38-cp38-win_amd64.whl" , hash = "sha256:7cee20a4f873d61274d70c28ff63d19677d9eeea869c6a9cbaf3a00712336b6c" } ,
{ file = "grpcio-1.48.1-cp39-cp39-linux_armv7l.whl" , hash = "sha256:460f5bec23fffa3c041aeba1f93a0f06b7a29e6a4da3658a52e1a866494920ab" } ,
{ file = "grpcio-1.48.1-cp39-cp39-macosx_10_10_x86_64.whl" , hash = "sha256:c54734a6eb3be544d332e65c846236d02e5fc71325e8c53af91e83a46b87b506" } ,
{ file = "grpcio-1.48.1-cp39-cp39-manylinux_2_17_aarch64.whl" , hash = "sha256:c6b6969c529521c86884a13745a4b68930db1ef2e051735c0f479d0a7adb25b6" } ,
{ file = "grpcio-1.48.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:346bef672a1536d59437210f16af35389d715d2b321bfe4899b3d6476a196706" } ,
{ file = "grpcio-1.48.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:f29627d66ae816837fd32c9450dc9c54780962cd74d034513ed829ba3ab46652" } ,
{ file = "grpcio-1.48.1-cp39-cp39-musllinux_1_1_i686.whl" , hash = "sha256:b01faf7934c606d5050cf055c1d03943180f23d995d68d04cf50c80d1ef2c65a" } ,
{ file = "grpcio-1.48.1-cp39-cp39-musllinux_1_1_x86_64.whl" , hash = "sha256:741eeff39a26d26da2b6d74ff0559f882ee95ee4e3b20c0b4b829021cb917f96" } ,
{ file = "grpcio-1.48.1-cp39-cp39-win32.whl" , hash = "sha256:a15409bc1d05c52ecb00f5e42ab8ff280e7149f2eb854728f628fb2a0a161a5b" } ,
{ file = "grpcio-1.48.1-cp39-cp39-win_amd64.whl" , hash = "sha256:2b6c336409937fd1cd2bf78eb72651f44d292d88da5e63059a4e8bd01b9d7411" } ,
{ file = "grpcio-1.48.1.tar.gz" , hash = "sha256:660217eccd2943bf23ea9a36e2a292024305aec04bf747fbcff1f5032b83610e" } ,
2021-01-08 17:32:39 +01:00
]
h11 = [
{ file = "h11-0.12.0-py3-none-any.whl" , hash = "sha256:36a3cb8c0a032f56e2da7084577878a035d3b61d104230d4bd49c0c6b555a9c6" } ,
{ file = "h11-0.12.0.tar.gz" , hash = "sha256:47222cb6067e4a307d535814917cd98fd0a57b6788ce715755fa2b6c28b56042" } ,
]
h2 = [
2022-02-11 11:45:21 +00:00
{ file = "h2-4.1.0-py3-none-any.whl" , hash = "sha256:03a46bcf682256c95b5fd9e9a99c1323584c3eec6440d379b9903d709476bc6d" } ,
{ file = "h2-4.1.0.tar.gz" , hash = "sha256:a83aca08fbe7aacb79fec788c9c0bac936343560ed9ec18b82a13a12c28d2abb" } ,
2021-01-08 17:32:39 +01:00
]
h5py = [
2022-09-02 15:02:34 +02:00
{ file = "h5py-3.7.0-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:d77af42cb751ad6cc44f11bae73075a07429a5cf2094dfde2b1e716e059b3911" } ,
{ file = "h5py-3.7.0-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:63beb8b7b47d0896c50de6efb9a1eaa81dbe211f3767e7dd7db159cea51ba37a" } ,
{ file = "h5py-3.7.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:04e2e1e2fc51b8873e972a08d2f89625ef999b1f2d276199011af57bb9fc7851" } ,
{ file = "h5py-3.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:f73307c876af49aa869ec5df1818e9bb0bdcfcf8a5ba773cc45a4fba5a286a5c" } ,
{ file = "h5py-3.7.0-cp310-cp310-win_amd64.whl" , hash = "sha256:f514b24cacdd983e61f8d371edac8c1b780c279d0acb8485639e97339c866073" } ,
{ file = "h5py-3.7.0-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:43fed4d13743cf02798a9a03a360a88e589d81285e72b83f47d37bb64ed44881" } ,
{ file = "h5py-3.7.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:c038399ce09a58ff8d89ec3e62f00aa7cb82d14f34e24735b920e2a811a3a426" } ,
{ file = "h5py-3.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:03d64fb86bb86b978928bad923b64419a23e836499ec6363e305ad28afd9d287" } ,
{ file = "h5py-3.7.0-cp37-cp37m-win_amd64.whl" , hash = "sha256:e5b7820b75f9519499d76cc708e27242ccfdd9dfb511d6deb98701961d0445aa" } ,
{ file = "h5py-3.7.0-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:a9351d729ea754db36d175098361b920573fdad334125f86ac1dd3a083355e20" } ,
{ file = "h5py-3.7.0-cp38-cp38-macosx_11_0_arm64.whl" , hash = "sha256:6776d896fb90c5938de8acb925e057e2f9f28755f67ec3edcbc8344832616c38" } ,
{ file = "h5py-3.7.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:0a047fddbe6951bce40e9cde63373c838a978c5e05a011a682db9ba6334b8e85" } ,
{ file = "h5py-3.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:0798a9c0ff45f17d0192e4d7114d734cac9f8b2b2c76dd1d923c4d0923f27bb6" } ,
{ file = "h5py-3.7.0-cp38-cp38-win_amd64.whl" , hash = "sha256:0d8de8cb619fc597da7cf8cdcbf3b7ff8c5f6db836568afc7dc16d21f59b2b49" } ,
{ file = "h5py-3.7.0-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:f084bbe816907dfe59006756f8f2d16d352faff2d107f4ffeb1d8de126fc5dc7" } ,
{ file = "h5py-3.7.0-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:1fcb11a2dc8eb7ddcae08afd8fae02ba10467753a857fa07a404d700a93f3d53" } ,
{ file = "h5py-3.7.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:ed43e2cc4f511756fd664fb45d6b66c3cbed4e3bd0f70e29c37809b2ae013c44" } ,
{ file = "h5py-3.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:9e7535df5ee3dc3e5d1f408fdfc0b33b46bc9b34db82743c82cd674d8239b9ad" } ,
{ file = "h5py-3.7.0-cp39-cp39-win_amd64.whl" , hash = "sha256:9e2ad2aa000f5b1e73b5dfe22f358ca46bf1a2b6ca394d9659874d7fc251731a" } ,
{ file = "h5py-3.7.0.tar.gz" , hash = "sha256:3fcf37884383c5da64846ab510190720027dca0768def34dd8dcb659dbe5cbf3" } ,
2021-01-08 17:32:39 +01:00
]
hpack = [
2021-08-27 15:33:01 +02:00
{ file = "hpack-4.0.0-py3-none-any.whl" , hash = "sha256:84a076fad3dc9a9f8063ccb8041ef100867b1878b25ef0ee63847a5d53818a6c" } ,
{ file = "hpack-4.0.0.tar.gz" , hash = "sha256:fc41de0c63e687ebffde81187a948221294896f6bdc0ae2312708df339430095" } ,
2021-01-08 17:32:39 +01:00
]
httpcore = [
2022-02-11 11:45:21 +00:00
{ file = "httpcore-0.13.7-py3-none-any.whl" , hash = "sha256:369aa481b014cf046f7067fddd67d00560f2f00426e79569d99cb11245134af0" } ,
{ file = "httpcore-0.13.7.tar.gz" , hash = "sha256:036f960468759e633574d7c121afba48af6419615d36ab8ede979f1ad6276fa3" } ,
2021-01-08 17:32:39 +01:00
]
httpx = [
2021-08-27 15:33:01 +02:00
{ file = "httpx-0.19.0-py3-none-any.whl" , hash = "sha256:9bd728a6c5ec0a9e243932a9983d57d3cc4a87bb4f554e1360fce407f78f9435" } ,
{ file = "httpx-0.19.0.tar.gz" , hash = "sha256:92ecd2c00c688b529eda11cedb15161eaf02dee9116712f621c70d9a40b2cdd0" } ,
2021-01-08 17:32:39 +01:00
]
hyperframe = [
2021-08-27 15:33:01 +02:00
{ file = "hyperframe-6.0.1-py3-none-any.whl" , hash = "sha256:0ec6bafd80d8ad2195c4f03aacba3a8265e57bc4cff261e802bf39970ed02a15" } ,
{ file = "hyperframe-6.0.1.tar.gz" , hash = "sha256:ae510046231dc8e9ecb1a6586f63d2347bf4c8905914aa84ba585ae85f28a914" } ,
2021-01-08 17:32:39 +01:00
]
idna = [
2022-09-02 15:02:34 +02:00
{ file = "idna-3.3-py3-none-any.whl" , hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff" } ,
{ file = "idna-3.3.tar.gz" , hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d" } ,
2021-08-27 15:33:01 +02:00
]
2021-01-08 17:32:39 +01:00
importlib-metadata = [
2021-08-24 17:33:16 +02:00
{ file = "importlib_metadata-3.10.1-py3-none-any.whl" , hash = "sha256:2ec0faae539743ae6aaa84b49a169670a465f7f5d64e6add98388cc29fd1f2f6" } ,
{ file = "importlib_metadata-3.10.1.tar.gz" , hash = "sha256:c9356b657de65c53744046fa8f7358afe0714a1af7d570c00c3835c2d724a7c1" } ,
2021-01-08 17:32:39 +01:00
]
2021-08-27 15:33:01 +02:00
importlib-resources = [
2022-09-02 15:02:34 +02:00
{ file = "importlib_resources-5.9.0-py3-none-any.whl" , hash = "sha256:f78a8df21a79bcc30cfd400bdc38f314333de7c0fb619763f6b9dabab8268bb7" } ,
{ file = "importlib_resources-5.9.0.tar.gz" , hash = "sha256:5481e97fb45af8dcf2f798952625591c58fe599d0735d86b10f54de086a61681" } ,
2021-08-27 15:33:01 +02:00
]
2021-01-08 17:32:39 +01:00
iniconfig = [
{ file = "iniconfig-1.1.1-py2.py3-none-any.whl" , hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3" } ,
{ file = "iniconfig-1.1.1.tar.gz" , hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32" } ,
]
isort = [
2022-02-11 11:45:21 +00:00
{ file = "isort-5.10.1-py3-none-any.whl" , hash = "sha256:6f62d78e2f89b4500b080fe3a81690850cd254227f27f75c3a0c491a1f351ba7" } ,
{ file = "isort-5.10.1.tar.gz" , hash = "sha256:e8443a5e7a020e9d7f97f1d7d9cd17c88bcb3bc7e218bf9cf5095fe550be2951" } ,
2021-01-08 17:32:39 +01:00
]
joblib = [
2022-02-11 11:45:21 +00:00
{ file = "joblib-1.1.0-py2.py3-none-any.whl" , hash = "sha256:f21f109b3c7ff9d95f8387f752d0d9c34a02aa2f7060c2135f465da0e5160ff6" } ,
{ file = "joblib-1.1.0.tar.gz" , hash = "sha256:4158fcecd13733f8be669be0683b96ebdbbd38d23559f54dca7205aea1bf1e35" } ,
2021-01-08 17:32:39 +01:00
]
jsonschema = [
2022-09-02 15:02:34 +02:00
{ file = "jsonschema-4.15.0-py3-none-any.whl" , hash = "sha256:2df0fab225abb3b41967bb3a46fd37dc74b1536b5296d0b1c2078cd072adf0f7" } ,
{ file = "jsonschema-4.15.0.tar.gz" , hash = "sha256:21f4979391bdceb044e502fd8e79e738c0cdfbdc8773f9a49b5769461e82fe1e" } ,
2021-01-08 17:32:39 +01:00
]
2022-09-02 10:10:38 +02:00
keras = [
2022-09-02 18:05:03 +02:00
{ file = "keras-2.9.0-py2.py3-none-any.whl" , hash = "sha256:55911256f89cfc9343c9fbe4b61ec45a2d33d89729cbe1ab9dcacf8b07b8b6ab" } ,
2021-08-24 17:33:16 +02:00
]
2022-09-02 10:10:38 +02:00
Keras-Preprocessing = [
2021-01-08 17:32:39 +01:00
{ file = "Keras_Preprocessing-1.1.2-py2.py3-none-any.whl" , hash = "sha256:7b82029b130ff61cc99b55f3bd27427df4838576838c5b2f65940e4fcec99a7b" } ,
{ file = "Keras_Preprocessing-1.1.2.tar.gz" , hash = "sha256:add82567c50c8bc648c14195bf544a5ce7c1f76761536956c3d2978970179ef3" } ,
]
2022-09-02 10:10:38 +02:00
libclang = [
{ file = "libclang-14.0.6-py2.py3-none-macosx_10_9_x86_64.whl" , hash = "sha256:8791cf3c3b087c373a6d61e9199da7a541da922c9ddcfed1122090586b996d6e" } ,
{ file = "libclang-14.0.6-py2.py3-none-macosx_11_0_arm64.whl" , hash = "sha256:7b06fc76bd1e67c8b04b5719bf2ac5d6a323b289b245dfa9e468561d99538188" } ,
{ file = "libclang-14.0.6-py2.py3-none-manylinux1_x86_64.whl" , hash = "sha256:e429853939423f276a25140b0b702442d7da9a09e001c05e48df888336947614" } ,
{ file = "libclang-14.0.6-py2.py3-none-manylinux2010_x86_64.whl" , hash = "sha256:206d2789e4450a37d054e63b70451a6fc1873466397443fa13de2b3d4adb2796" } ,
{ file = "libclang-14.0.6-py2.py3-none-manylinux2014_aarch64.whl" , hash = "sha256:e2add1703129b2abe066fb1890afa880870a89fd6ab4ec5d2a7a8dc8d271677e" } ,
{ file = "libclang-14.0.6-py2.py3-none-manylinux2014_armv7l.whl" , hash = "sha256:5dd3c6fca1b007d308a4114afa8e4e9d32f32b2572520701d45fcc626ac5cd6c" } ,
{ file = "libclang-14.0.6-py2.py3-none-musllinux_1_2_x86_64.whl" , hash = "sha256:cfb0e892ebb5dff6bd498ab5778adb8581f26a00fd8347b3c76c989fe2fd04f7" } ,
{ file = "libclang-14.0.6-py2.py3-none-win_amd64.whl" , hash = "sha256:ea03c12675151837660cdd5dce65bd89320896ac3421efef43a36678f113ce95" } ,
{ file = "libclang-14.0.6-py2.py3-none-win_arm64.whl" , hash = "sha256:2e4303e04517fcd11173cb2e51a7070eed71e16ef45d4e26a82c5e881cac3d27" } ,
{ file = "libclang-14.0.6.tar.gz" , hash = "sha256:9052a8284d8846984f6fa826b1d7460a66d3b23a486d782633b42b6e3b418789" } ,
]
2021-01-08 17:32:39 +01:00
librosa = [
2022-09-02 10:10:38 +02:00
{ file = "librosa-0.8.1-py3-none-any.whl" , hash = "sha256:fd381e2d7067d4d4cf7691f2ef3620ef62a8aa6445dcf407e3328254692f742a" } ,
{ file = "librosa-0.8.1.tar.gz" , hash = "sha256:c53d05e768ae4a3e553ae21c2e5015293e5efbfd5c12d497f1104cb519cca6b3" } ,
2021-01-08 17:32:39 +01:00
]
llvmlite = [
2022-09-02 15:02:34 +02:00
{ file = "llvmlite-0.38.1-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:a7dd2bd1d6406e7789273e3f8a304ed5d9adcfaa5768052fca7dc233a857be98" } ,
{ file = "llvmlite-0.38.1-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:7a5e0ed215a576f0f872f47a70b8cb49864e0aefc8586aff5ce83e3bff47bc23" } ,
{ file = "llvmlite-0.38.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:633c9026eb43b9903cc4ffbc1c7d5293b2e3ad95d06fa9eab0f6ce6ff6ea15b3" } ,
{ file = "llvmlite-0.38.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:b98da8436dbc29013ea301f1fdb0d596ab53bf0ab65c976d96d00bb6faa0b479" } ,
{ file = "llvmlite-0.38.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:0c0adce1793d66d009c554809f27baeb6258bf13f6fbaa12eff7443500caec25" } ,
{ file = "llvmlite-0.38.1-cp310-cp310-win32.whl" , hash = "sha256:8c64c90a8b0b7b7e1ed1912ba82c1a3f43cf25affbe06aa3c56c84050edee8ac" } ,
{ file = "llvmlite-0.38.1-cp310-cp310-win_amd64.whl" , hash = "sha256:ab070266f0f51304789a6c20d4be91a9e69683ad9bd4861eb89980e8eb613b3a" } ,
{ file = "llvmlite-0.38.1-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:ed7528b8b85de930b76407e44b080e4f376b7a007c2879749599ff8e2fe32753" } ,
{ file = "llvmlite-0.38.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:7db018da2863034ad9c73c946625637f3a89635bc70576068bab4bd085eea90d" } ,
{ file = "llvmlite-0.38.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:4c1e5805c92e049b4956ed01204c6647de6160ab9aefb0d67ea83ca02a1d889a" } ,
{ file = "llvmlite-0.38.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:5559e46c79b4017c3c25edc3b9512d11adc3689b9046120c685b0905c08d48a5" } ,
{ file = "llvmlite-0.38.1-cp37-cp37m-win32.whl" , hash = "sha256:ef9aa574eff2e15f8c47b255da0db5dab326dc7f76384c307ae35490e2d2489a" } ,
{ file = "llvmlite-0.38.1-cp37-cp37m-win_amd64.whl" , hash = "sha256:84d5a0163c172db2b2ae561d2fc0866fbd9f716cf13f92c0d41ca4338e682672" } ,
{ file = "llvmlite-0.38.1-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:a263252a68d85450110ec1f2b406c0414e49b04a4d216d31c0515ea1d59c3882" } ,
{ file = "llvmlite-0.38.1-cp38-cp38-macosx_11_0_arm64.whl" , hash = "sha256:de8bd61480173930f2a029673e7cd0738fbbb5171dfe490340839ad7301d4cf0" } ,
{ file = "llvmlite-0.38.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:fbfbe546394c39db39a6898a51972aa131c8d6b0628517728b350552f58bdc19" } ,
{ file = "llvmlite-0.38.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:8c4f26c6c370e134a909ac555a671fa1376e74c69af0208f25c0979472577a9d" } ,
{ file = "llvmlite-0.38.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:f95f455697c44d7c04ef95fdfce04629f48df08a832d0a0d9eb2363186dbb969" } ,
{ file = "llvmlite-0.38.1-cp38-cp38-win32.whl" , hash = "sha256:41e638a71c85a9a4a33f279c4cd812bc2f84122505b1f6ab8984ec7debb8548b" } ,
{ file = "llvmlite-0.38.1-cp38-cp38-win_amd64.whl" , hash = "sha256:5c07d63df4578f31b39b764d3b4291f70157af7f42e171a8884ae7aaf989d1f7" } ,
{ file = "llvmlite-0.38.1-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:4e11bd9929dcbd55d5eb5cd7b08bf71b0097ea48cc192b69d102a90dd6e9816f" } ,
{ file = "llvmlite-0.38.1-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:edfa2c761cfa56cf76e783290d82e117f829bb691d8d90aa375505204888abac" } ,
{ file = "llvmlite-0.38.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:0e609f7312a439b53b6f622d99180c3ff6a3e1e4ceca4d18aca1c5b46f4e3664" } ,
{ file = "llvmlite-0.38.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:9f53c3448410cc84d0e1af84dbc0d60ad32779853d40bcc8b1ee3c67ebbe94b1" } ,
{ file = "llvmlite-0.38.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:9c8fac4edbadefa4dddf5dc6cca76bc2ae81df211dcd16a6638d60cc41249e56" } ,
{ file = "llvmlite-0.38.1-cp39-cp39-win32.whl" , hash = "sha256:3d76c0fa42390bef56979ed213fbf0150c3fef36f5ea68d3d780d5d725da8c01" } ,
{ file = "llvmlite-0.38.1-cp39-cp39-win_amd64.whl" , hash = "sha256:66462d768c30d5f648ca3361d657b434efa8b09f6cf04d6b6eae66e62e993644" } ,
{ file = "llvmlite-0.38.1.tar.gz" , hash = "sha256:0622a86301fcf81cc50d7ed5b4bebe992c030580d413a8443b328ed4f4d82561" } ,
2021-01-08 17:32:39 +01:00
]
2022-09-02 10:10:38 +02:00
Markdown = [
{ file = "Markdown-3.3.4-py3-none-any.whl" , hash = "sha256:96c3ba1261de2f7547b46a00ea8463832c921d3f9d6aba3f255a6f71386db20c" } ,
{ file = "Markdown-3.3.4.tar.gz" , hash = "sha256:31b5b491868dcc87d6c24b7e3d19a0d730d59d3e46f4eea6430a321bed387a49" } ,
2021-01-08 17:32:39 +01:00
]
2022-09-02 15:02:34 +02:00
MarkupSafe = [
{ file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl" , hash = "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812" } ,
{ file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a" } ,
{ file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:a49907dd8420c5685cfa064a1335b6754b74541bbb3706c259c02ed65b644b3e" } ,
{ file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:10c1bfff05d95783da83491be968e8fe789263689c02724e0c691933c52994f5" } ,
{ file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:b7bd98b796e2b6553da7225aeb61f447f80a1ca64f41d83612e6139ca5213aa4" } ,
{ file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl" , hash = "sha256:b09bf97215625a311f669476f44b8b318b075847b49316d3e28c08e41a7a573f" } ,
{ file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl" , hash = "sha256:694deca8d702d5db21ec83983ce0bb4b26a578e71fbdbd4fdcd387daa90e4d5e" } ,
{ file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl" , hash = "sha256:efc1913fd2ca4f334418481c7e595c00aad186563bbc1ec76067848c7ca0a933" } ,
{ file = "MarkupSafe-2.1.1-cp310-cp310-win32.whl" , hash = "sha256:4a33dea2b688b3190ee12bd7cfa29d39c9ed176bda40bfa11099a3ce5d3a7ac6" } ,
{ file = "MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl" , hash = "sha256:dda30ba7e87fbbb7eab1ec9f58678558fd9a6b8b853530e176eabd064da81417" } ,
{ file = "MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:671cd1187ed5e62818414afe79ed29da836dde67166a9fac6d435873c44fdd02" } ,
{ file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:3799351e2336dc91ea70b034983ee71cf2f9533cdff7c14c90ea126bfd95d65a" } ,
{ file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:e72591e9ecd94d7feb70c1cbd7be7b3ebea3f548870aa91e2732960fa4d57a37" } ,
{ file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:6fbf47b5d3728c6aea2abb0589b5d30459e369baa772e0f37a0320185e87c980" } ,
{ file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl" , hash = "sha256:d5ee4f386140395a2c818d149221149c54849dfcfcb9f1debfe07a8b8bd63f9a" } ,
{ file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl" , hash = "sha256:bcb3ed405ed3222f9904899563d6fc492ff75cce56cba05e32eff40e6acbeaa3" } ,
{ file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl" , hash = "sha256:e1c0b87e09fa55a220f058d1d49d3fb8df88fbfab58558f1198e08c1e1de842a" } ,
{ file = "MarkupSafe-2.1.1-cp37-cp37m-win32.whl" , hash = "sha256:8dc1c72a69aa7e082593c4a203dcf94ddb74bb5c8a731e4e1eb68d031e8498ff" } ,
{ file = "MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl" , hash = "sha256:97a68e6ada378df82bc9f16b800ab77cbf4b2fada0081794318520138c088e4a" } ,
{ file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl" , hash = "sha256:e8c843bbcda3a2f1e3c2ab25913c80a3c5376cd00c6e8c4a86a89a28c8dc5452" } ,
{ file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:0212a68688482dc52b2d45013df70d169f542b7394fc744c02a57374a4207003" } ,
{ file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:8e576a51ad59e4bfaac456023a78f6b5e6e7651dcd383bcc3e18d06f9b55d6d1" } ,
{ file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:4b9fe39a2ccc108a4accc2676e77da025ce383c108593d65cc909add5c3bd601" } ,
{ file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:96e37a3dc86e80bf81758c152fe66dbf60ed5eca3d26305edf01892257049925" } ,
{ file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl" , hash = "sha256:6d0072fea50feec76a4c418096652f2c3238eaa014b2f94aeb1d56a66b41403f" } ,
{ file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl" , hash = "sha256:089cf3dbf0cd6c100f02945abeb18484bd1ee57a079aefd52cffd17fba910b88" } ,
{ file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl" , hash = "sha256:6a074d34ee7a5ce3effbc526b7083ec9731bb3cbf921bbe1d3005d4d2bdb3a63" } ,
{ file = "MarkupSafe-2.1.1-cp38-cp38-win32.whl" , hash = "sha256:421be9fbf0ffe9ffd7a378aafebbf6f4602d564d34be190fc19a193232fd12b1" } ,
{ file = "MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl" , hash = "sha256:fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7" } ,
{ file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl" , hash = "sha256:e04e26803c9c3851c931eac40c695602c6295b8d432cbe78609649ad9bd2da8a" } ,
{ file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:b87db4360013327109564f0e591bd2a3b318547bcef31b468a92ee504d07ae4f" } ,
{ file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:99a2a507ed3ac881b975a2976d59f38c19386d128e7a9a18b7df6fff1fd4c1d6" } ,
{ file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:56442863ed2b06d19c37f94d999035e15ee982988920e12a5b4ba29b62ad1f77" } ,
{ file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:3ce11ee3f23f79dbd06fb3d63e2f6af7b12db1d46932fe7bd8afa259a5996603" } ,
{ file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl" , hash = "sha256:33b74d289bd2f5e527beadcaa3f401e0df0a89927c1559c8566c066fa4248ab7" } ,
{ file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl" , hash = "sha256:43093fb83d8343aac0b1baa75516da6092f58f41200907ef92448ecab8825135" } ,
{ file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl" , hash = "sha256:8e3dcf21f367459434c18e71b2a9532d96547aef8a871872a5bd69a715c15f96" } ,
{ file = "MarkupSafe-2.1.1-cp39-cp39-win32.whl" , hash = "sha256:d4306c36ca495956b6d568d276ac11fdd9c30a36f1b6eb928070dc5360b22e1c" } ,
{ file = "MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl" , hash = "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247" } ,
{ file = "MarkupSafe-2.1.1.tar.gz" , hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b" } ,
]
2021-01-08 17:32:39 +01:00
musdb = [
{ file = "musdb-0.3.1-py2.py3-none-any.whl" , hash = "sha256:db8f65b40c56938dab9e1b042254c6e3a0d75b139f98a96d6edbb646c0d25c7d" } ,
{ file = "musdb-0.3.1.tar.gz" , hash = "sha256:27aac71095f919c7e0cfb526af1e6f745275645e959f759c42711354ea0fcbf7" } ,
]
museval = [
{ file = "museval-0.3.0-py2.py3-none-any.whl" , hash = "sha256:8c913fd48224746e480b9c4d854e9b0e2c2a0ba9d457ae3dc4360b99be2677ab" } ,
{ file = "museval-0.3.0.tar.gz" , hash = "sha256:2e1334dd3367dea562c1902515f6d55e87dc3072cfc411c616ac6f0a48d31d5f" } ,
]
mypy = [
{ file = "mypy-0.790-cp35-cp35m-macosx_10_6_x86_64.whl" , hash = "sha256:bd03b3cf666bff8d710d633d1c56ab7facbdc204d567715cb3b9f85c6e94f669" } ,
{ file = "mypy-0.790-cp35-cp35m-manylinux1_x86_64.whl" , hash = "sha256:2170492030f6faa537647d29945786d297e4862765f0b4ac5930ff62e300d802" } ,
{ file = "mypy-0.790-cp35-cp35m-win_amd64.whl" , hash = "sha256:e86bdace26c5fe9cf8cb735e7cedfe7850ad92b327ac5d797c656717d2ca66de" } ,
{ file = "mypy-0.790-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:e97e9c13d67fbe524be17e4d8025d51a7dca38f90de2e462243ab8ed8a9178d1" } ,
{ file = "mypy-0.790-cp36-cp36m-manylinux1_x86_64.whl" , hash = "sha256:0d34d6b122597d48a36d6c59e35341f410d4abfa771d96d04ae2c468dd201abc" } ,
{ file = "mypy-0.790-cp36-cp36m-win_amd64.whl" , hash = "sha256:72060bf64f290fb629bd4a67c707a66fd88ca26e413a91384b18db3876e57ed7" } ,
{ file = "mypy-0.790-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:eea260feb1830a627fb526d22fbb426b750d9f5a47b624e8d5e7e004359b219c" } ,
{ file = "mypy-0.790-cp37-cp37m-manylinux1_x86_64.whl" , hash = "sha256:c614194e01c85bb2e551c421397e49afb2872c88b5830e3554f0519f9fb1c178" } ,
{ file = "mypy-0.790-cp37-cp37m-win_amd64.whl" , hash = "sha256:0a0d102247c16ce93c97066443d11e2d36e6cc2a32d8ccc1f705268970479324" } ,
{ file = "mypy-0.790-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:cf4e7bf7f1214826cf7333627cb2547c0db7e3078723227820d0a2490f117a01" } ,
{ file = "mypy-0.790-cp38-cp38-manylinux1_x86_64.whl" , hash = "sha256:af4e9ff1834e565f1baa74ccf7ae2564ae38c8df2a85b057af1dbbc958eb6666" } ,
{ file = "mypy-0.790-cp38-cp38-win_amd64.whl" , hash = "sha256:da56dedcd7cd502ccd3c5dddc656cb36113dd793ad466e894574125945653cea" } ,
{ file = "mypy-0.790-py3-none-any.whl" , hash = "sha256:2842d4fbd1b12ab422346376aad03ff5d0805b706102e475e962370f874a5122" } ,
{ file = "mypy-0.790.tar.gz" , hash = "sha256:2b21ba45ad9ef2e2eb88ce4aeadd0112d0f5026418324176fd494a6824b74975" } ,
]
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" } ,
]
norbert = [
{ file = "norbert-0.2.1-py2.py3-none-any.whl" , hash = "sha256:409ac3f173cfb1fdaad21563b8f730d7cbe01af81349bcd96fb2b8b9d5f74339" } ,
{ file = "norbert-0.2.1.tar.gz" , hash = "sha256:bd4cbc2527f0550b81bf4265c1a64b352cab7f71e4e3c823d30b71a7368de74e" } ,
]
numba = [
2022-09-02 15:02:34 +02:00
{ file = "numba-0.55.2-cp310-cp310-macosx_10_14_x86_64.whl" , hash = "sha256:dd05f7c0ce64b6977596aa4e5a44747c6ef414d7989da1c7672337c54381a5ef" } ,
{ file = "numba-0.55.2-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:e36232eccd172c583b1f021c5c48744c087ae6fc9dc5c5f0dd2cb2286e517bf8" } ,
{ file = "numba-0.55.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl" , hash = "sha256:25410557d0deb1d97397b71e142a36772133986a7dd4fe2935786e2dd149245f" } ,
{ file = "numba-0.55.2-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl" , hash = "sha256:676c081162cc9403706071c1d1d42e479c0741551ab28096ba13859a2e3e9b80" } ,
{ file = "numba-0.55.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl" , hash = "sha256:2665ef28e900b3a55bf370daa81c12ebc64cd434116accd60c38a95a159a3182" } ,
{ file = "numba-0.55.2-cp310-cp310-win32.whl" , hash = "sha256:d7ac9ea5feef9536ab8bfbbb3ded1a0617ea8794d7547800d535b7857800f996" } ,
{ file = "numba-0.55.2-cp310-cp310-win_amd64.whl" , hash = "sha256:29b89a68af162acf87adeb8fbf01f6bb1effae4711b28146f95108d82e905624" } ,
{ file = "numba-0.55.2-cp37-cp37m-macosx_10_14_x86_64.whl" , hash = "sha256:6e0f9b5d1c8ea1bdef39b0ad921a9bbf0cc4a88e76d722d756c68f1653787c35" } ,
{ file = "numba-0.55.2-cp37-cp37m-manylinux2014_aarch64.manylinux_2_17_aarch64.whl" , hash = "sha256:135fb7694928f9f57b4ff5b1be58f20f4771fedd1680636a9affdead96051959" } ,
{ file = "numba-0.55.2-cp37-cp37m-manylinux2014_i686.manylinux_2_17_i686.whl" , hash = "sha256:de1f93bd7e2d431451aec20a52ac651a020e98a4ba46797fad860bba338a7e64" } ,
{ file = "numba-0.55.2-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl" , hash = "sha256:3eaf53e73e700370163e58257257299ac0d46fea4f244bf5476e4635bc31d808" } ,
{ file = "numba-0.55.2-cp37-cp37m-win32.whl" , hash = "sha256:da4485e0f0b9562f39c78887149b33d13d787aa696553c9257b95575122905ed" } ,
{ file = "numba-0.55.2-cp37-cp37m-win_amd64.whl" , hash = "sha256:5559c6684bf6cce7a22c656d8fef3e7c38ff5fec5153abef5955f6f7cae9f102" } ,
{ file = "numba-0.55.2-cp38-cp38-macosx_10_14_x86_64.whl" , hash = "sha256:a85779adc5234f7857615d1bd2c7b514314521f9f0163c33017707ed9816e6e6" } ,
{ file = "numba-0.55.2-cp38-cp38-macosx_11_0_arm64.whl" , hash = "sha256:16a52a0641c342b09b39f6762dcbe3846e44aa9baaaf4703b2ca42a3aee7346f" } ,
{ file = "numba-0.55.2-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl" , hash = "sha256:46715180f87d5a1f3e4077d207ade66c96fc01159f5b7d49cee2d6ffb9e6539f" } ,
{ file = "numba-0.55.2-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl" , hash = "sha256:d1c3cef3289fefb5673ceae32024ab5a8a08d4f4380bcb8348d01f1ba570ccff" } ,
{ file = "numba-0.55.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl" , hash = "sha256:68bb33eaef1d6155fc1ae4fa6c915b8a42e5052c89a58742254eaad072eab118" } ,
{ file = "numba-0.55.2-cp38-cp38-win32.whl" , hash = "sha256:dfddd633141608a09cbce275fb9fe7aa514918625ace20b0e587898a2d93c030" } ,
{ file = "numba-0.55.2-cp38-cp38-win_amd64.whl" , hash = "sha256:a669212aa66ffee4ad778016ac3819add33f9bcb96b4c384d3099531dd175085" } ,
{ file = "numba-0.55.2-cp39-cp39-macosx_10_14_x86_64.whl" , hash = "sha256:dcde1a1a3a430fb5f83c7e095b0b6ac7adb5595f50a3ee05babb2964f31613c4" } ,
{ file = "numba-0.55.2-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:69b2e823efa40d32b259f5c094476dde2226b92032f17015d8cd7c10472654ce" } ,
{ file = "numba-0.55.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl" , hash = "sha256:20de0139d2267c8f0e2470d4f88540446cd1bf40de0f29f31b7ab9bf25d49b45" } ,
{ file = "numba-0.55.2-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl" , hash = "sha256:09ff4d690abb05ffbb8a29a96d1cf35b46887a26796d3670de104beeec73d639" } ,
{ file = "numba-0.55.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl" , hash = "sha256:1105449247f338e49d63eb04a4aaa5c440bb5435df00f718c8e6e7afad841bb0" } ,
{ file = "numba-0.55.2-cp39-cp39-win32.whl" , hash = "sha256:32649584144c35ced239937ab2c416ab22bbc1490ef8d90609c30fff9f6aa1b8" } ,
{ file = "numba-0.55.2-cp39-cp39-win_amd64.whl" , hash = "sha256:8d5760a1e6a48d98d6b9cf774e4d2a64813d981cca60d7b7356af61195a6ca17" } ,
{ file = "numba-0.55.2.tar.gz" , hash = "sha256:e428d9e11d9ba592849ccc9f7a009003eb7d30612007e365afe743ce7118c6f4" } ,
2021-01-08 17:32:39 +01:00
]
numpy = [
2022-09-02 15:56:40 +02:00
{ file = "numpy-1.21.6-cp310-cp310-macosx_10_9_universal2.whl" , hash = "sha256:8737609c3bbdd48e380d463134a35ffad3b22dc56295eff6f79fd85bd0eeeb25" } ,
{ file = "numpy-1.21.6-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:fdffbfb6832cd0b300995a2b08b8f6fa9f6e856d562800fea9182316d99c4e8e" } ,
{ file = "numpy-1.21.6-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:3820724272f9913b597ccd13a467cc492a0da6b05df26ea09e78b171a0bb9da6" } ,
{ file = "numpy-1.21.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:f17e562de9edf691a42ddb1eb4a5541c20dd3f9e65b09ded2beb0799c0cf29bb" } ,
{ file = "numpy-1.21.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:5f30427731561ce75d7048ac254dbe47a2ba576229250fb60f0fb74db96501a1" } ,
{ file = "numpy-1.21.6-cp310-cp310-win32.whl" , hash = "sha256:d4bf4d43077db55589ffc9009c0ba0a94fa4908b9586d6ccce2e0b164c86303c" } ,
{ file = "numpy-1.21.6-cp310-cp310-win_amd64.whl" , hash = "sha256:d136337ae3cc69aa5e447e78d8e1514be8c3ec9b54264e680cf0b4bd9011574f" } ,
{ file = "numpy-1.21.6-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:6aaf96c7f8cebc220cdfc03f1d5a31952f027dda050e5a703a0d1c396075e3e7" } ,
{ file = "numpy-1.21.6-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:67c261d6c0a9981820c3a149d255a76918278a6b03b6a036800359aba1256d46" } ,
{ file = "numpy-1.21.6-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:a6be4cb0ef3b8c9250c19cc122267263093eee7edd4e3fa75395dfda8c17a8e2" } ,
{ file = "numpy-1.21.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:7c4068a8c44014b2d55f3c3f574c376b2494ca9cc73d2f1bd692382b6dffe3db" } ,
{ file = "numpy-1.21.6-cp37-cp37m-win32.whl" , hash = "sha256:7c7e5fa88d9ff656e067876e4736379cc962d185d5cd808014a8a928d529ef4e" } ,
{ file = "numpy-1.21.6-cp37-cp37m-win_amd64.whl" , hash = "sha256:bcb238c9c96c00d3085b264e5c1a1207672577b93fa666c3b14a45240b14123a" } ,
{ file = "numpy-1.21.6-cp38-cp38-macosx_10_9_universal2.whl" , hash = "sha256:82691fda7c3f77c90e62da69ae60b5ac08e87e775b09813559f8901a88266552" } ,
{ file = "numpy-1.21.6-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:643843bcc1c50526b3a71cd2ee561cf0d8773f062c8cbaf9ffac9fdf573f83ab" } ,
{ file = "numpy-1.21.6-cp38-cp38-macosx_11_0_arm64.whl" , hash = "sha256:357768c2e4451ac241465157a3e929b265dfac85d9214074985b1786244f2ef3" } ,
{ file = "numpy-1.21.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:9f411b2c3f3d76bba0865b35a425157c5dcf54937f82bbeb3d3c180789dd66a6" } ,
{ file = "numpy-1.21.6-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:4aa48afdce4660b0076a00d80afa54e8a97cd49f457d68a4342d188a09451c1a" } ,
{ file = "numpy-1.21.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:d6a96eef20f639e6a97d23e57dd0c1b1069a7b4fd7027482a4c5c451cd7732f4" } ,
{ file = "numpy-1.21.6-cp38-cp38-win32.whl" , hash = "sha256:5c3c8def4230e1b959671eb959083661b4a0d2e9af93ee339c7dada6759a9470" } ,
{ file = "numpy-1.21.6-cp38-cp38-win_amd64.whl" , hash = "sha256:bf2ec4b75d0e9356edea834d1de42b31fe11f726a81dfb2c2112bc1eaa508fcf" } ,
{ file = "numpy-1.21.6-cp39-cp39-macosx_10_9_universal2.whl" , hash = "sha256:4391bd07606be175aafd267ef9bea87cf1b8210c787666ce82073b05f202add1" } ,
{ file = "numpy-1.21.6-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:67f21981ba2f9d7ba9ade60c9e8cbaa8cf8e9ae51673934480e45cf55e953673" } ,
{ file = "numpy-1.21.6-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:ee5ec40fdd06d62fe5d4084bef4fd50fd4bb6bfd2bf519365f569dc470163ab0" } ,
{ file = "numpy-1.21.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:1dbe1c91269f880e364526649a52eff93ac30035507ae980d2fed33aaee633ac" } ,
{ file = "numpy-1.21.6-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:d9caa9d5e682102453d96a0ee10c7241b72859b01a941a397fd965f23b3e016b" } ,
{ file = "numpy-1.21.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:58459d3bad03343ac4b1b42ed14d571b8743dc80ccbf27444f266729df1d6f5b" } ,
{ file = "numpy-1.21.6-cp39-cp39-win32.whl" , hash = "sha256:7f5ae4f304257569ef3b948810816bc87c9146e8c446053539947eedeaa32786" } ,
{ file = "numpy-1.21.6-cp39-cp39-win_amd64.whl" , hash = "sha256:e31f0bb5928b793169b87e3d1e070f2342b22d5245c755e2b81caa29756246c3" } ,
{ file = "numpy-1.21.6-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:dd1c8f6bd65d07d3810b90d02eba7997e32abbdf1277a481d698969e921a3be0" } ,
{ file = "numpy-1.21.6.zip" , hash = "sha256:ecb55251139706669fdec2ff073c98ef8e9a84473e51e716211b41aa0f18e656" } ,
2021-01-08 17:32:39 +01:00
]
oauthlib = [
2022-02-11 11:45:21 +00:00
{ file = "oauthlib-3.2.0-py3-none-any.whl" , hash = "sha256:6db33440354787f9b7f3a6dbd4febf5d0f93758354060e802f6c06cb493022fe" } ,
{ file = "oauthlib-3.2.0.tar.gz" , hash = "sha256:23a8208d75b902797ea29fd31fa80a15ed9dc2c6c16fe73f5d346f83f6fa27a2" } ,
2021-01-08 17:32:39 +01:00
]
opt-einsum = [
{ file = "opt_einsum-3.3.0-py3-none-any.whl" , hash = "sha256:2455e59e3947d3c275477df7f5205b30635e266fe6dc300e3d9f9646bfcea147" } ,
{ file = "opt_einsum-3.3.0.tar.gz" , hash = "sha256:59f6475f77bbc37dcf7cd748519c0ec60722e91e63ca114e68821c0c54a46549" } ,
]
packaging = [
2022-02-11 11:45:21 +00:00
{ file = "packaging-21.3-py3-none-any.whl" , hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522" } ,
{ file = "packaging-21.3.tar.gz" , hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb" } ,
2021-01-08 17:32:39 +01:00
]
pandas = [
2022-09-05 09:54:45 +02:00
{ file = "pandas-1.3.5-cp310-cp310-macosx_10_9_universal2.whl" , hash = "sha256:62d5b5ce965bae78f12c1c0df0d387899dd4211ec0bdc52822373f13a3a022b9" } ,
{ file = "pandas-1.3.5-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:adfeb11be2d54f275142c8ba9bf67acee771b7186a5745249c7d5a06c670136b" } ,
{ file = "pandas-1.3.5-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:60a8c055d58873ad81cae290d974d13dd479b82cbb975c3e1fa2cf1920715296" } ,
{ file = "pandas-1.3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:fd541ab09e1f80a2a1760032d665f6e032d8e44055d602d65eeea6e6e85498cb" } ,
{ file = "pandas-1.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:2651d75b9a167cc8cc572cf787ab512d16e316ae00ba81874b560586fa1325e0" } ,
{ file = "pandas-1.3.5-cp310-cp310-win_amd64.whl" , hash = "sha256:aaf183a615ad790801fa3cf2fa450e5b6d23a54684fe386f7e3208f8b9bfbef6" } ,
{ file = "pandas-1.3.5-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:344295811e67f8200de2390093aeb3c8309f5648951b684d8db7eee7d1c81fb7" } ,
{ file = "pandas-1.3.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:552020bf83b7f9033b57cbae65589c01e7ef1544416122da0c79140c93288f56" } ,
{ file = "pandas-1.3.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:5cce0c6bbeb266b0e39e35176ee615ce3585233092f685b6a82362523e59e5b4" } ,
{ file = "pandas-1.3.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:7d28a3c65463fd0d0ba8bbb7696b23073efee0510783340a44b08f5e96ffce0c" } ,
{ file = "pandas-1.3.5-cp37-cp37m-win32.whl" , hash = "sha256:a62949c626dd0ef7de11de34b44c6475db76995c2064e2d99c6498c3dba7fe58" } ,
{ file = "pandas-1.3.5-cp37-cp37m-win_amd64.whl" , hash = "sha256:8025750767e138320b15ca16d70d5cdc1886e8f9cc56652d89735c016cd8aea6" } ,
{ file = "pandas-1.3.5-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:fe95bae4e2d579812865db2212bb733144e34d0c6785c0685329e5b60fcb85dd" } ,
{ file = "pandas-1.3.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:5f261553a1e9c65b7a310302b9dbac31cf0049a51695c14ebe04e4bfd4a96f02" } ,
{ file = "pandas-1.3.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:8b6dbec5f3e6d5dc80dcfee250e0a2a652b3f28663492f7dab9a24416a48ac39" } ,
{ file = "pandas-1.3.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:d3bc49af96cd6285030a64779de5b3688633a07eb75c124b0747134a63f4c05f" } ,
{ file = "pandas-1.3.5-cp38-cp38-win32.whl" , hash = "sha256:b6b87b2fb39e6383ca28e2829cddef1d9fc9e27e55ad91ca9c435572cdba51bf" } ,
{ file = "pandas-1.3.5-cp38-cp38-win_amd64.whl" , hash = "sha256:a395692046fd8ce1edb4c6295c35184ae0c2bbe787ecbe384251da609e27edcb" } ,
{ file = "pandas-1.3.5-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:bd971a3f08b745a75a86c00b97f3007c2ea175951286cdda6abe543e687e5f2f" } ,
{ file = "pandas-1.3.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:37f06b59e5bc05711a518aa10beaec10942188dccb48918bb5ae602ccbc9f1a0" } ,
{ file = "pandas-1.3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:2c21778a688d3712d35710501f8001cdbf96eb70a7c587a3d5613573299fdca6" } ,
{ file = "pandas-1.3.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:3345343206546545bc26a05b4602b6a24385b5ec7c75cb6059599e3d56831da2" } ,
{ file = "pandas-1.3.5-cp39-cp39-win32.whl" , hash = "sha256:c69406a2808ba6cf580c2255bcf260b3f214d2664a3a4197d0e640f573b46fd3" } ,
{ file = "pandas-1.3.5-cp39-cp39-win_amd64.whl" , hash = "sha256:32e1a26d5ade11b547721a72f9bfc4bd113396947606e00d5b4a5b79b3dcb006" } ,
{ file = "pandas-1.3.5.tar.gz" , hash = "sha256:1e4285f5de1012de20ca46b188ccf33521bff61ba5c5ebd78b4fb28e5416a9f1" } ,
2021-01-08 17:32:39 +01:00
]
pathspec = [
2022-09-02 15:02:34 +02:00
{ file = "pathspec-0.10.0-py3-none-any.whl" , hash = "sha256:aefa80ac32d5bf1f96139dca67cefb69a431beff4e6bf1168468f37d7ab87015" } ,
{ file = "pathspec-0.10.0.tar.gz" , hash = "sha256:01eecd304ba0e6eeed188ae5fa568e99ef10265af7fd9ab737d6412b4ee0ab85" } ,
]
pkgutil_resolve_name = [
{ file = "pkgutil_resolve_name-1.3.10-py3-none-any.whl" , hash = "sha256:ca27cc078d25c5ad71a9de0a7a330146c4e014c2462d9af19c6b828280649c5e" } ,
{ file = "pkgutil_resolve_name-1.3.10.tar.gz" , hash = "sha256:357d6c9e6a755653cfd78893817c0853af365dd51ec97f3d358a819373bbd174" } ,
2021-01-08 17:32:39 +01:00
]
2022-09-02 10:10:38 +02:00
platformdirs = [
2022-09-02 15:02:34 +02:00
{ file = "platformdirs-2.5.2-py3-none-any.whl" , hash = "sha256:027d8e83a2d7de06bbac4e5ef7e023c02b863d7ea5d079477e722bb41ab25788" } ,
{ file = "platformdirs-2.5.2.tar.gz" , hash = "sha256:58c8abb07dcb441e6ee4b11d8df0ac856038f944ab98b7be6b27b2a3c7feef19" } ,
2022-09-02 10:10:38 +02:00
]
2021-01-08 17:32:39 +01:00
pluggy = [
2022-02-11 11:45:21 +00:00
{ file = "pluggy-1.0.0-py2.py3-none-any.whl" , hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3" } ,
{ file = "pluggy-1.0.0.tar.gz" , hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159" } ,
2021-01-08 17:32:39 +01:00
]
pooch = [
2022-02-11 11:45:21 +00:00
{ file = "pooch-1.6.0-py3-none-any.whl" , hash = "sha256:3bf0e20027096836b8dbce0152dbb785a269abeb621618eb4bdd275ff1e23c9c" } ,
{ file = "pooch-1.6.0.tar.gz" , hash = "sha256:57d20ec4b10dd694d2b05bb64bc6b109c6e85a6c1405794ce87ed8b341ab3f44" } ,
2021-01-08 17:32:39 +01:00
]
protobuf = [
2022-09-02 15:02:34 +02:00
{ file = "protobuf-3.20.1-cp310-cp310-macosx_10_9_universal2.whl" , hash = "sha256:3cc797c9d15d7689ed507b165cd05913acb992d78b379f6014e013f9ecb20996" } ,
{ file = "protobuf-3.20.1-cp310-cp310-manylinux2014_aarch64.whl" , hash = "sha256:ff8d8fa42675249bb456f5db06c00de6c2f4c27a065955917b28c4f15978b9c3" } ,
{ file = "protobuf-3.20.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:cd68be2559e2a3b84f517fb029ee611546f7812b1fdd0aa2ecc9bc6ec0e4fdde" } ,
{ file = "protobuf-3.20.1-cp310-cp310-win32.whl" , hash = "sha256:9016d01c91e8e625141d24ec1b20fed584703e527d28512aa8c8707f105a683c" } ,
{ file = "protobuf-3.20.1-cp310-cp310-win_amd64.whl" , hash = "sha256:32ca378605b41fd180dfe4e14d3226386d8d1b002ab31c969c366549e66a2bb7" } ,
{ file = "protobuf-3.20.1-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:9be73ad47579abc26c12024239d3540e6b765182a91dbc88e23658ab71767153" } ,
{ file = "protobuf-3.20.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl" , hash = "sha256:097c5d8a9808302fb0da7e20edf0b8d4703274d140fd25c5edabddcde43e081f" } ,
{ file = "protobuf-3.20.1-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:e250a42f15bf9d5b09fe1b293bdba2801cd520a9f5ea2d7fb7536d4441811d20" } ,
{ file = "protobuf-3.20.1-cp37-cp37m-manylinux2014_aarch64.whl" , hash = "sha256:cdee09140e1cd184ba9324ec1df410e7147242b94b5f8b0c64fc89e38a8ba531" } ,
{ file = "protobuf-3.20.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl" , hash = "sha256:af0ebadc74e281a517141daad9d0f2c5d93ab78e9d455113719a45a49da9db4e" } ,
{ file = "protobuf-3.20.1-cp37-cp37m-win32.whl" , hash = "sha256:755f3aee41354ae395e104d62119cb223339a8f3276a0cd009ffabfcdd46bb0c" } ,
{ file = "protobuf-3.20.1-cp37-cp37m-win_amd64.whl" , hash = "sha256:62f1b5c4cd6c5402b4e2d63804ba49a327e0c386c99b1675c8a0fefda23b2067" } ,
{ file = "protobuf-3.20.1-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:06059eb6953ff01e56a25cd02cca1a9649a75a7e65397b5b9b4e929ed71d10cf" } ,
{ file = "protobuf-3.20.1-cp38-cp38-manylinux2014_aarch64.whl" , hash = "sha256:cb29edb9eab15742d791e1025dd7b6a8f6fcb53802ad2f6e3adcb102051063ab" } ,
{ file = "protobuf-3.20.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl" , hash = "sha256:69ccfdf3657ba59569c64295b7d51325f91af586f8d5793b734260dfe2e94e2c" } ,
{ file = "protobuf-3.20.1-cp38-cp38-win32.whl" , hash = "sha256:dd5789b2948ca702c17027c84c2accb552fc30f4622a98ab5c51fcfe8c50d3e7" } ,
{ file = "protobuf-3.20.1-cp38-cp38-win_amd64.whl" , hash = "sha256:77053d28427a29987ca9caf7b72ccafee011257561259faba8dd308fda9a8739" } ,
{ file = "protobuf-3.20.1-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:6f50601512a3d23625d8a85b1638d914a0970f17920ff39cec63aaef80a93fb7" } ,
{ file = "protobuf-3.20.1-cp39-cp39-manylinux2014_aarch64.whl" , hash = "sha256:284f86a6207c897542d7e956eb243a36bb8f9564c1742b253462386e96c6b78f" } ,
{ file = "protobuf-3.20.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl" , hash = "sha256:7403941f6d0992d40161aa8bb23e12575637008a5a02283a930addc0508982f9" } ,
{ file = "protobuf-3.20.1-cp39-cp39-win32.whl" , hash = "sha256:db977c4ca738dd9ce508557d4fce0f5aebd105e158c725beec86feb1f6bc20d8" } ,
{ file = "protobuf-3.20.1-cp39-cp39-win_amd64.whl" , hash = "sha256:7e371f10abe57cee5021797126c93479f59fccc9693dafd6bd5633ab67808a91" } ,
{ file = "protobuf-3.20.1-py2.py3-none-any.whl" , hash = "sha256:adfc6cf69c7f8c50fd24c793964eef18f0ac321315439d94945820612849c388" } ,
{ file = "protobuf-3.20.1.tar.gz" , hash = "sha256:adc31566d027f45efe3f44eeb5b1f329da43891634d61c75a5944e9be6dd42c9" } ,
2021-01-08 17:32:39 +01:00
]
py = [
2022-02-11 11:45:21 +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" } ,
2021-01-08 17:32:39 +01:00
]
pyaml = [
2022-02-11 11:45:21 +00:00
{ file = "pyaml-21.10.1-py2.py3-none-any.whl" , hash = "sha256:19985ed303c3a985de4cf8fd329b6d0a5a5b5c9035ea240eccc709ebacbaf4a0" } ,
{ file = "pyaml-21.10.1.tar.gz" , hash = "sha256:c6519fee13bf06e3bb3f20cacdea8eba9140385a7c2546df5dbae4887f768383" } ,
2021-01-08 17:32:39 +01:00
]
pyasn1 = [
{ file = "pyasn1-0.4.8-py2.4.egg" , hash = "sha256:fec3e9d8e36808a28efb59b489e4528c10ad0f480e57dcc32b4de5c9d8c9fdf3" } ,
{ file = "pyasn1-0.4.8-py2.5.egg" , hash = "sha256:0458773cfe65b153891ac249bcf1b5f8f320b7c2ce462151f8fa74de8934becf" } ,
{ file = "pyasn1-0.4.8-py2.6.egg" , hash = "sha256:5c9414dcfede6e441f7e8f81b43b34e834731003427e5b09e4e00e3172a10f00" } ,
{ file = "pyasn1-0.4.8-py2.7.egg" , hash = "sha256:6e7545f1a61025a4e58bb336952c5061697da694db1cae97b116e9c46abcf7c8" } ,
{ file = "pyasn1-0.4.8-py2.py3-none-any.whl" , hash = "sha256:39c7e2ec30515947ff4e87fb6f456dfc6e84857d34be479c9d4a4ba4bf46aa5d" } ,
{ file = "pyasn1-0.4.8-py3.1.egg" , hash = "sha256:78fa6da68ed2727915c4767bb386ab32cdba863caa7dbe473eaae45f9959da86" } ,
{ file = "pyasn1-0.4.8-py3.2.egg" , hash = "sha256:08c3c53b75eaa48d71cf8c710312316392ed40899cb34710d092e96745a358b7" } ,
{ file = "pyasn1-0.4.8-py3.3.egg" , hash = "sha256:03840c999ba71680a131cfaee6fab142e1ed9bbd9c693e285cc6aca0d555e576" } ,
{ file = "pyasn1-0.4.8-py3.4.egg" , hash = "sha256:7ab8a544af125fb704feadb008c99a88805126fb525280b2270bb25cc1d78a12" } ,
{ file = "pyasn1-0.4.8-py3.5.egg" , hash = "sha256:e89bf84b5437b532b0803ba5c9a5e054d21fec423a89952a74f87fa2c9b7bce2" } ,
{ file = "pyasn1-0.4.8-py3.6.egg" , hash = "sha256:014c0e9976956a08139dc0712ae195324a75e142284d5f87f1a87ee1b068a359" } ,
{ file = "pyasn1-0.4.8-py3.7.egg" , hash = "sha256:99fcc3c8d804d1bc6d9a099921e39d827026409a58f2a720dcdb89374ea0c776" } ,
{ file = "pyasn1-0.4.8.tar.gz" , hash = "sha256:aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba" } ,
]
pyasn1-modules = [
{ file = "pyasn1-modules-0.2.8.tar.gz" , hash = "sha256:905f84c712230b2c592c19470d3ca8d552de726050d1d1716282a1f6146be65e" } ,
{ file = "pyasn1_modules-0.2.8-py2.4.egg" , hash = "sha256:0fe1b68d1e486a1ed5473f1302bd991c1611d319bba158e98b106ff86e1d7199" } ,
{ file = "pyasn1_modules-0.2.8-py2.5.egg" , hash = "sha256:fe0644d9ab041506b62782e92b06b8c68cca799e1a9636ec398675459e031405" } ,
{ file = "pyasn1_modules-0.2.8-py2.6.egg" , hash = "sha256:a99324196732f53093a84c4369c996713eb8c89d360a496b599fb1a9c47fc3eb" } ,
{ file = "pyasn1_modules-0.2.8-py2.7.egg" , hash = "sha256:0845a5582f6a02bb3e1bde9ecfc4bfcae6ec3210dd270522fee602365430c3f8" } ,
{ file = "pyasn1_modules-0.2.8-py2.py3-none-any.whl" , hash = "sha256:a50b808ffeb97cb3601dd25981f6b016cbb3d31fbf57a8b8a87428e6158d0c74" } ,
{ file = "pyasn1_modules-0.2.8-py3.1.egg" , hash = "sha256:f39edd8c4ecaa4556e989147ebf219227e2cd2e8a43c7e7fcb1f1c18c5fd6a3d" } ,
{ file = "pyasn1_modules-0.2.8-py3.2.egg" , hash = "sha256:b80486a6c77252ea3a3e9b1e360bc9cf28eaac41263d173c032581ad2f20fe45" } ,
{ file = "pyasn1_modules-0.2.8-py3.3.egg" , hash = "sha256:65cebbaffc913f4fe9e4808735c95ea22d7a7775646ab690518c056784bc21b4" } ,
{ file = "pyasn1_modules-0.2.8-py3.4.egg" , hash = "sha256:15b7c67fabc7fc240d87fb9aabf999cf82311a6d6fb2c70d00d3d0604878c811" } ,
{ file = "pyasn1_modules-0.2.8-py3.5.egg" , hash = "sha256:426edb7a5e8879f1ec54a1864f16b882c2837bfd06eee62f2c982315ee2473ed" } ,
{ file = "pyasn1_modules-0.2.8-py3.6.egg" , hash = "sha256:cbac4bc38d117f2a49aeedec4407d23e8866ea4ac27ff2cf7fb3e5b570df19e0" } ,
{ file = "pyasn1_modules-0.2.8-py3.7.egg" , hash = "sha256:c29a5e5cc7a3f05926aff34e097e84f8589cd790ce0ed41b67aed6857b26aafd" } ,
]
pycparser = [
2022-02-11 11:45:21 +00:00
{ file = "pycparser-2.21-py2.py3-none-any.whl" , hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9" } ,
{ file = "pycparser-2.21.tar.gz" , hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206" } ,
2021-01-08 17:32:39 +01:00
]
pyparsing = [
2022-09-02 15:02:34 +02:00
{ file = "pyparsing-3.0.9-py3-none-any.whl" , hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc" } ,
{ file = "pyparsing-3.0.9.tar.gz" , hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb" } ,
2021-01-08 17:32:39 +01:00
]
pyrsistent = [
2022-09-02 15:02:34 +02:00
{ file = "pyrsistent-0.18.1-cp310-cp310-macosx_10_9_universal2.whl" , hash = "sha256:df46c854f490f81210870e509818b729db4488e1f30f2a1ce1698b2295a878d1" } ,
{ file = "pyrsistent-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:5d45866ececf4a5fff8742c25722da6d4c9e180daa7b405dc0a2a2790d668c26" } ,
{ file = "pyrsistent-0.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:4ed6784ceac462a7d6fcb7e9b663e93b9a6fb373b7f43594f9ff68875788e01e" } ,
{ file = "pyrsistent-0.18.1-cp310-cp310-win32.whl" , hash = "sha256:e4f3149fd5eb9b285d6bfb54d2e5173f6a116fe19172686797c056672689daf6" } ,
{ file = "pyrsistent-0.18.1-cp310-cp310-win_amd64.whl" , hash = "sha256:636ce2dc235046ccd3d8c56a7ad54e99d5c1cd0ef07d9ae847306c91d11b5fec" } ,
{ file = "pyrsistent-0.18.1-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:e92a52c166426efbe0d1ec1332ee9119b6d32fc1f0bbfd55d5c1088070e7fc1b" } ,
{ file = "pyrsistent-0.18.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:d7a096646eab884bf8bed965bad63ea327e0d0c38989fc83c5ea7b8a87037bfc" } ,
{ file = "pyrsistent-0.18.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:cdfd2c361b8a8e5d9499b9082b501c452ade8bbf42aef97ea04854f4a3f43b22" } ,
{ file = "pyrsistent-0.18.1-cp37-cp37m-win32.whl" , hash = "sha256:7ec335fc998faa4febe75cc5268a9eac0478b3f681602c1f27befaf2a1abe1d8" } ,
{ file = "pyrsistent-0.18.1-cp37-cp37m-win_amd64.whl" , hash = "sha256:6455fc599df93d1f60e1c5c4fe471499f08d190d57eca040c0ea182301321286" } ,
{ file = "pyrsistent-0.18.1-cp38-cp38-macosx_10_9_universal2.whl" , hash = "sha256:fd8da6d0124efa2f67d86fa70c851022f87c98e205f0594e1fae044e7119a5a6" } ,
{ file = "pyrsistent-0.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:7bfe2388663fd18bd8ce7db2c91c7400bf3e1a9e8bd7d63bf7e77d39051b85ec" } ,
{ file = "pyrsistent-0.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:0e3e1fcc45199df76053026a51cc59ab2ea3fc7c094c6627e93b7b44cdae2c8c" } ,
{ file = "pyrsistent-0.18.1-cp38-cp38-win32.whl" , hash = "sha256:b568f35ad53a7b07ed9b1b2bae09eb15cdd671a5ba5d2c66caee40dbf91c68ca" } ,
{ file = "pyrsistent-0.18.1-cp38-cp38-win_amd64.whl" , hash = "sha256:d1b96547410f76078eaf66d282ddca2e4baae8964364abb4f4dcdde855cd123a" } ,
{ file = "pyrsistent-0.18.1-cp39-cp39-macosx_10_9_universal2.whl" , hash = "sha256:f87cc2863ef33c709e237d4b5f4502a62a00fab450c9e020892e8e2ede5847f5" } ,
{ file = "pyrsistent-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:6bc66318fb7ee012071b2792024564973ecc80e9522842eb4e17743604b5e045" } ,
{ file = "pyrsistent-0.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:914474c9f1d93080338ace89cb2acee74f4f666fb0424896fcfb8d86058bf17c" } ,
{ file = "pyrsistent-0.18.1-cp39-cp39-win32.whl" , hash = "sha256:1b34eedd6812bf4d33814fca1b66005805d3640ce53140ab8bbb1e2651b0d9bc" } ,
{ file = "pyrsistent-0.18.1-cp39-cp39-win_amd64.whl" , hash = "sha256:e24a828f57e0c337c8d8bb9f6b12f09dfdf0273da25fda9e314f0b684b415a07" } ,
{ file = "pyrsistent-0.18.1.tar.gz" , hash = "sha256:d4d61f8b993a7255ba714df3aca52700f8125289f84f704cf80916517c46eb96" } ,
2021-01-08 17:32:39 +01:00
]
pytest = [
2022-02-11 11:45:21 +00:00
{ file = "pytest-6.2.5-py3-none-any.whl" , hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134" } ,
{ file = "pytest-6.2.5.tar.gz" , hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89" } ,
2021-01-08 17:32:39 +01:00
]
pytest-forked = [
2022-02-11 11:45:21 +00:00
{ file = "pytest-forked-1.4.0.tar.gz" , hash = "sha256:8b67587c8f98cbbadfdd804539ed5455b6ed03802203485dd2f53c1422d7440e" } ,
{ file = "pytest_forked-1.4.0-py3-none-any.whl" , hash = "sha256:bbbb6717efc886b9d64537b41fb1497cfaf3c9601276be8da2cccfea5a3c8ad8" } ,
2021-01-08 17:32:39 +01:00
]
python-dateutil = [
2021-08-24 17:33:16 +02:00
{ file = "python-dateutil-2.8.2.tar.gz" , hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86" } ,
{ file = "python_dateutil-2.8.2-py2.py3-none-any.whl" , hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9" } ,
2021-01-08 17:32:39 +01:00
]
pytz = [
2022-09-02 10:10:38 +02:00
{ file = "pytz-2022.2.1-py2.py3-none-any.whl" , hash = "sha256:220f481bdafa09c3955dfbdddb7b57780e9a94f5127e35456a48589b9e0c0197" } ,
{ file = "pytz-2022.2.1.tar.gz" , hash = "sha256:cea221417204f2d1a2aa03ddae3e867921971d0d76f14d87abb4414415bbdcf5" } ,
2021-01-08 17:32:39 +01:00
]
2022-09-02 10:10:38 +02:00
PyYAML = [
2022-02-11 11:45:21 +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" } ,
2021-01-08 17:32:39 +01:00
]
requests = [
2022-09-02 15:02:34 +02:00
{ file = "requests-2.28.1-py3-none-any.whl" , hash = "sha256:8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349" } ,
{ file = "requests-2.28.1.tar.gz" , hash = "sha256:7c5599b102feddaa661c826c56ab4fee28bfd17f5abca1ebbe3e7f19d7c97983" } ,
2021-01-08 17:32:39 +01:00
]
requests-oauthlib = [
2022-02-11 11:45:21 +00:00
{ file = "requests-oauthlib-1.3.1.tar.gz" , hash = "sha256:75beac4a47881eeb94d5ea5d6ad31ef88856affe2332b9aafb52c6452ccf0d7a" } ,
{ file = "requests_oauthlib-1.3.1-py2.py3-none-any.whl" , hash = "sha256:2577c501a2fb8d05a304c09d090d6e47c306fef15809d102b327cf8364bddab5" } ,
2021-01-08 17:32:39 +01:00
]
resampy = [
2022-09-02 10:10:38 +02:00
{ file = "resampy-0.4.0-py3-none-any.whl" , hash = "sha256:a2fca38a7a1b0851d7ac66535c8ee42fc778953005810f8d4dc80c46a1f9c3d7" } ,
{ file = "resampy-0.4.0.tar.gz" , hash = "sha256:4d592fdd3024648bfa986049c7f36e92eb747998a89ee8c75e868456a27c539d" } ,
2021-01-08 17:32:39 +01:00
]
rfc3986 = [
2021-08-24 17:33:16 +02:00
{ file = "rfc3986-1.5.0-py2.py3-none-any.whl" , hash = "sha256:a86d6e1f5b1dc238b218b012df0aa79409667bb209e58da56d0b94704e712a97" } ,
{ file = "rfc3986-1.5.0.tar.gz" , hash = "sha256:270aaf10d87d0d4e095063c65bf3ddbc6ee3d0b226328ce21e036f946e421835" } ,
2021-01-08 17:32:39 +01:00
]
rsa = [
2022-09-02 10:10:38 +02:00
{ file = "rsa-4.9-py3-none-any.whl" , hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7" } ,
{ file = "rsa-4.9.tar.gz" , hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21" } ,
2021-01-08 17:32:39 +01:00
]
scikit-learn = [
2022-09-02 15:02:34 +02:00
{ file = "scikit-learn-1.0.2.tar.gz" , hash = "sha256:b5870959a5484b614f26d31ca4c17524b1b0317522199dc985c3b4256e030767" } ,
{ file = "scikit_learn-1.0.2-cp310-cp310-macosx_10_13_x86_64.whl" , hash = "sha256:da3c84694ff693b5b3194d8752ccf935a665b8b5edc33a283122f4273ca3e687" } ,
{ file = "scikit_learn-1.0.2-cp310-cp310-macosx_12_0_arm64.whl" , hash = "sha256:75307d9ea39236cad7eea87143155eea24d48f93f3a2f9389c817f7019f00705" } ,
{ file = "scikit_learn-1.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:f14517e174bd7332f1cca2c959e704696a5e0ba246eb8763e6c24876d8710049" } ,
{ file = "scikit_learn-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:d9aac97e57c196206179f674f09bc6bffcd0284e2ba95b7fe0b402ac3f986023" } ,
{ file = "scikit_learn-1.0.2-cp310-cp310-win_amd64.whl" , hash = "sha256:d93d4c28370aea8a7cbf6015e8a669cd5d69f856cc2aa44e7a590fb805bb5583" } ,
{ file = "scikit_learn-1.0.2-cp37-cp37m-macosx_10_13_x86_64.whl" , hash = "sha256:85260fb430b795d806251dd3bb05e6f48cdc777ac31f2bcf2bc8bbed3270a8f5" } ,
{ file = "scikit_learn-1.0.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:a053a6a527c87c5c4fa7bf1ab2556fa16d8345cf99b6c5a19030a4a7cd8fd2c0" } ,
{ file = "scikit_learn-1.0.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:245c9b5a67445f6f044411e16a93a554edc1efdcce94d3fc0bc6a4b9ac30b752" } ,
{ file = "scikit_learn-1.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:158faf30684c92a78e12da19c73feff9641a928a8024b4fa5ec11d583f3d8a87" } ,
{ file = "scikit_learn-1.0.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:08ef968f6b72033c16c479c966bf37ccd49b06ea91b765e1cc27afefe723920b" } ,
{ file = "scikit_learn-1.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:16455ace947d8d9e5391435c2977178d0ff03a261571e67f627c8fee0f9d431a" } ,
{ file = "scikit_learn-1.0.2-cp37-cp37m-win32.whl" , hash = "sha256:2f3b453e0b149898577e301d27e098dfe1a36943f7bb0ad704d1e548efc3b448" } ,
{ file = "scikit_learn-1.0.2-cp37-cp37m-win_amd64.whl" , hash = "sha256:46f431ec59dead665e1370314dbebc99ead05e1c0a9df42f22d6a0e00044820f" } ,
{ file = "scikit_learn-1.0.2-cp38-cp38-macosx_10_13_x86_64.whl" , hash = "sha256:ff3fa8ea0e09e38677762afc6e14cad77b5e125b0ea70c9bba1992f02c93b028" } ,
{ file = "scikit_learn-1.0.2-cp38-cp38-macosx_12_0_arm64.whl" , hash = "sha256:9369b030e155f8188743eb4893ac17a27f81d28a884af460870c7c072f114243" } ,
{ file = "scikit_learn-1.0.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:7d6b2475f1c23a698b48515217eb26b45a6598c7b1840ba23b3c5acece658dbb" } ,
{ file = "scikit_learn-1.0.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:285db0352e635b9e3392b0b426bc48c3b485512d3b4ac3c7a44ec2a2ba061e66" } ,
{ file = "scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:5cb33fe1dc6f73dc19e67b264dbb5dde2a0539b986435fdd78ed978c14654830" } ,
{ file = "scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:b1391d1a6e2268485a63c3073111fe3ba6ec5145fc957481cfd0652be571226d" } ,
{ file = "scikit_learn-1.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:bc3744dabc56b50bec73624aeca02e0def06b03cb287de26836e730659c5d29c" } ,
{ file = "scikit_learn-1.0.2-cp38-cp38-win32.whl" , hash = "sha256:a999c9f02ff9570c783069f1074f06fe7386ec65b84c983db5aeb8144356a355" } ,
{ file = "scikit_learn-1.0.2-cp38-cp38-win_amd64.whl" , hash = "sha256:7626a34eabbf370a638f32d1a3ad50526844ba58d63e3ab81ba91e2a7c6d037e" } ,
{ file = "scikit_learn-1.0.2-cp39-cp39-macosx_10_13_x86_64.whl" , hash = "sha256:a90b60048f9ffdd962d2ad2fb16367a87ac34d76e02550968719eb7b5716fd10" } ,
{ file = "scikit_learn-1.0.2-cp39-cp39-macosx_12_0_arm64.whl" , hash = "sha256:7a93c1292799620df90348800d5ac06f3794c1316ca247525fa31169f6d25855" } ,
{ file = "scikit_learn-1.0.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:eabceab574f471de0b0eb3f2ecf2eee9f10b3106570481d007ed1c84ebf6d6a1" } ,
{ file = "scikit_learn-1.0.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:55f2f3a8414e14fbee03782f9fe16cca0f141d639d2b1c1a36779fa069e1db57" } ,
{ file = "scikit_learn-1.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:80095a1e4b93bd33261ef03b9bc86d6db649f988ea4dbcf7110d0cded8d7213d" } ,
{ file = "scikit_learn-1.0.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:fa38a1b9b38ae1fad2863eff5e0d69608567453fdfc850c992e6e47eb764e846" } ,
{ file = "scikit_learn-1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:ff746a69ff2ef25f62b36338c615dd15954ddc3ab8e73530237dd73235e76d62" } ,
{ file = "scikit_learn-1.0.2-cp39-cp39-win32.whl" , hash = "sha256:e174242caecb11e4abf169342641778f68e1bfaba80cd18acd6bc84286b9a534" } ,
{ file = "scikit_learn-1.0.2-cp39-cp39-win_amd64.whl" , hash = "sha256:b54a62c6e318ddbfa7d22c383466d38d2ee770ebdb5ddb668d56a099f6eaf75f" } ,
2021-01-08 17:32:39 +01:00
]
scipy = [
2022-09-02 15:02:34 +02:00
{ file = "scipy-1.7.3-1-cp310-cp310-macosx_12_0_arm64.whl" , hash = "sha256:c9e04d7e9b03a8a6ac2045f7c5ef741be86727d8f49c45db45f244bdd2bcff17" } ,
{ file = "scipy-1.7.3-1-cp38-cp38-macosx_12_0_arm64.whl" , hash = "sha256:b0e0aeb061a1d7dcd2ed59ea57ee56c9b23dd60100825f98238c06ee5cc4467e" } ,
{ file = "scipy-1.7.3-1-cp39-cp39-macosx_12_0_arm64.whl" , hash = "sha256:b78a35c5c74d336f42f44106174b9851c783184a85a3fe3e68857259b37b9ffb" } ,
{ file = "scipy-1.7.3-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:173308efba2270dcd61cd45a30dfded6ec0085b4b6eb33b5eb11ab443005e088" } ,
{ file = "scipy-1.7.3-cp310-cp310-macosx_12_0_arm64.whl" , hash = "sha256:21b66200cf44b1c3e86495e3a436fc7a26608f92b8d43d344457c54f1c024cbc" } ,
{ file = "scipy-1.7.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:ceebc3c4f6a109777c0053dfa0282fddb8893eddfb0d598574acfb734a926168" } ,
{ file = "scipy-1.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:f7eaea089345a35130bc9a39b89ec1ff69c208efa97b3f8b25ea5d4c41d88094" } ,
{ file = "scipy-1.7.3-cp310-cp310-win_amd64.whl" , hash = "sha256:304dfaa7146cffdb75fbf6bb7c190fd7688795389ad060b970269c8576d038e9" } ,
{ file = "scipy-1.7.3-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:033ce76ed4e9f62923e1f8124f7e2b0800db533828c853b402c7eec6e9465d80" } ,
{ file = "scipy-1.7.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:4d242d13206ca4302d83d8a6388c9dfce49fc48fdd3c20efad89ba12f785bf9e" } ,
{ file = "scipy-1.7.3-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:8499d9dd1459dc0d0fe68db0832c3d5fc1361ae8e13d05e6849b358dc3f2c279" } ,
{ file = "scipy-1.7.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:ca36e7d9430f7481fc7d11e015ae16fbd5575615a8e9060538104778be84addf" } ,
{ file = "scipy-1.7.3-cp37-cp37m-win32.whl" , hash = "sha256:e2c036492e673aad1b7b0d0ccdc0cb30a968353d2c4bf92ac8e73509e1bf212c" } ,
{ file = "scipy-1.7.3-cp37-cp37m-win_amd64.whl" , hash = "sha256:866ada14a95b083dd727a845a764cf95dd13ba3dc69a16b99038001b05439709" } ,
{ file = "scipy-1.7.3-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:65bd52bf55f9a1071398557394203d881384d27b9c2cad7df9a027170aeaef93" } ,
{ file = "scipy-1.7.3-cp38-cp38-macosx_12_0_arm64.whl" , hash = "sha256:f99d206db1f1ae735a8192ab93bd6028f3a42f6fa08467d37a14eb96c9dd34a3" } ,
{ file = "scipy-1.7.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:5f2cfc359379c56b3a41b17ebd024109b2049f878badc1e454f31418c3a18436" } ,
{ file = "scipy-1.7.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:eb7ae2c4dbdb3c9247e07acc532f91077ae6dbc40ad5bd5dca0bb5a176ee9bda" } ,
{ file = "scipy-1.7.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:95c2d250074cfa76715d58830579c64dff7354484b284c2b8b87e5a38321672c" } ,
{ file = "scipy-1.7.3-cp38-cp38-win32.whl" , hash = "sha256:87069cf875f0262a6e3187ab0f419f5b4280d3dcf4811ef9613c605f6e4dca95" } ,
{ file = "scipy-1.7.3-cp38-cp38-win_amd64.whl" , hash = "sha256:7edd9a311299a61e9919ea4192dd477395b50c014cdc1a1ac572d7c27e2207fa" } ,
{ file = "scipy-1.7.3-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:eef93a446114ac0193a7b714ce67659db80caf940f3232bad63f4c7a81bc18df" } ,
{ file = "scipy-1.7.3-cp39-cp39-macosx_12_0_arm64.whl" , hash = "sha256:eb326658f9b73c07081300daba90a8746543b5ea177184daed26528273157294" } ,
{ file = "scipy-1.7.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:93378f3d14fff07572392ce6a6a2ceb3a1f237733bd6dcb9eb6a2b29b0d19085" } ,
{ file = "scipy-1.7.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:edad1cf5b2ce1912c4d8ddad20e11d333165552aba262c882e28c78bbc09dbf6" } ,
{ file = "scipy-1.7.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:5d1cc2c19afe3b5a546ede7e6a44ce1ff52e443d12b231823268019f608b9b12" } ,
{ file = "scipy-1.7.3-cp39-cp39-win32.whl" , hash = "sha256:2c56b820d304dffcadbbb6cbfbc2e2c79ee46ea291db17e288e73cd3c64fefa9" } ,
{ file = "scipy-1.7.3-cp39-cp39-win_amd64.whl" , hash = "sha256:3f78181a153fa21c018d346f595edd648344751d7f03ab94b398be2ad083ed3e" } ,
{ file = "scipy-1.7.3.tar.gz" , hash = "sha256:ab5875facfdef77e0a47d5fd39ea178b58e60e454a4c85aa1e52fcb80db7babf" } ,
2021-01-08 17:32:39 +01:00
]
2022-09-02 10:10:38 +02:00
setuptools = [
2022-09-02 15:02:34 +02:00
{ file = "setuptools-65.3.0-py3-none-any.whl" , hash = "sha256:2e24e0bec025f035a2e72cdd1961119f557d78ad331bb00ff82efb2ab8da8e82" } ,
{ file = "setuptools-65.3.0.tar.gz" , hash = "sha256:7732871f4f7fa58fb6bdcaeadb0161b2bd046c85905dbaa066bdcbcc81953b57" } ,
2022-09-02 10:10:38 +02:00
]
2021-01-08 17:32:39 +01:00
simplejson = [
2022-02-11 11:45:21 +00:00
{ file = "simplejson-3.17.6-cp27-cp27m-macosx_10_9_x86_64.whl" , hash = "sha256:a89acae02b2975b1f8e4974cb8cdf9bf9f6c91162fb8dec50c259ce700f2770a" } ,
{ file = "simplejson-3.17.6-cp27-cp27m-manylinux1_i686.whl" , hash = "sha256:82ff356ff91be0ab2293fc6d8d262451eb6ac4fd999244c4b5f863e049ba219c" } ,
{ file = "simplejson-3.17.6-cp27-cp27m-manylinux1_x86_64.whl" , hash = "sha256:0de783e9c2b87bdd75b57efa2b6260c24b94605b5c9843517577d40ee0c3cc8a" } ,
{ file = "simplejson-3.17.6-cp27-cp27m-manylinux2010_i686.whl" , hash = "sha256:d24a9e61df7a7787b338a58abfba975414937b609eb6b18973e25f573bc0eeeb" } ,
{ file = "simplejson-3.17.6-cp27-cp27m-manylinux2010_x86_64.whl" , hash = "sha256:e8603e691580487f11306ecb066c76f1f4a8b54fb3bdb23fa40643a059509366" } ,
{ file = "simplejson-3.17.6-cp27-cp27mu-manylinux1_i686.whl" , hash = "sha256:9b01e7b00654115965a206e3015f0166674ec1e575198a62a977355597c0bef5" } ,
{ file = "simplejson-3.17.6-cp27-cp27mu-manylinux1_x86_64.whl" , hash = "sha256:37bc0cf0e5599f36072077e56e248f3336917ded1d33d2688624d8ed3cefd7d2" } ,
{ file = "simplejson-3.17.6-cp27-cp27mu-manylinux2010_i686.whl" , hash = "sha256:cf6e7d5fe2aeb54898df18db1baf479863eae581cce05410f61f6b4188c8ada1" } ,
{ file = "simplejson-3.17.6-cp27-cp27mu-manylinux2010_x86_64.whl" , hash = "sha256:bdfc54b4468ed4cd7415928cbe782f4d782722a81aeb0f81e2ddca9932632211" } ,
{ file = "simplejson-3.17.6-cp310-cp310-macosx_10_9_universal2.whl" , hash = "sha256:dd16302d39c4d6f4afde80edd0c97d4db643327d355a312762ccd9bd2ca515ed" } ,
{ file = "simplejson-3.17.6-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:deac4bdafa19bbb89edfb73b19f7f69a52d0b5bd3bb0c4ad404c1bbfd7b4b7fd" } ,
{ file = "simplejson-3.17.6-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:a8bbdb166e2fb816e43ab034c865147edafe28e1b19c72433147789ac83e2dda" } ,
{ file = "simplejson-3.17.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:a7854326920d41c3b5d468154318fe6ba4390cb2410480976787c640707e0180" } ,
{ file = "simplejson-3.17.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:04e31fa6ac8e326480703fb6ded1488bfa6f1d3f760d32e29dbf66d0838982ce" } ,
{ file = "simplejson-3.17.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:f63600ec06982cdf480899026f4fda622776f5fabed9a869fdb32d72bc17e99a" } ,
{ file = "simplejson-3.17.6-cp310-cp310-musllinux_1_1_aarch64.whl" , hash = "sha256:e03c3b8cc7883a54c3f34a6a135c4a17bc9088a33f36796acdb47162791b02f6" } ,
{ file = "simplejson-3.17.6-cp310-cp310-musllinux_1_1_i686.whl" , hash = "sha256:a2d30d6c1652140181dc6861f564449ad71a45e4f165a6868c27d36745b65d40" } ,
{ file = "simplejson-3.17.6-cp310-cp310-musllinux_1_1_x86_64.whl" , hash = "sha256:a1aa6e4cae8e3b8d5321be4f51c5ce77188faf7baa9fe1e78611f93a8eed2882" } ,
{ file = "simplejson-3.17.6-cp310-cp310-win32.whl" , hash = "sha256:97202f939c3ff341fc3fa84d15db86156b1edc669424ba20b0a1fcd4a796a045" } ,
{ file = "simplejson-3.17.6-cp310-cp310-win_amd64.whl" , hash = "sha256:80d3bc9944be1d73e5b1726c3bbfd2628d3d7fe2880711b1eb90b617b9b8ac70" } ,
{ file = "simplejson-3.17.6-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:9fa621b3c0c05d965882c920347b6593751b7ab20d8fa81e426f1735ca1a9fc7" } ,
{ file = "simplejson-3.17.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:dd2fb11922f58df8528adfca123f6a84748ad17d066007e7ac977720063556bd" } ,
{ file = "simplejson-3.17.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:724c1fe135aa437d5126138d977004d165a3b5e2ee98fc4eb3e7c0ef645e7e27" } ,
{ file = "simplejson-3.17.6-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:4ff4ac6ff3aa8f814ac0f50bf218a2e1a434a17aafad4f0400a57a8cc62ef17f" } ,
{ file = "simplejson-3.17.6-cp36-cp36m-musllinux_1_1_aarch64.whl" , hash = "sha256:67093a526e42981fdd954868062e56c9b67fdd7e712616cc3265ad0c210ecb51" } ,
{ file = "simplejson-3.17.6-cp36-cp36m-musllinux_1_1_i686.whl" , hash = "sha256:5d6b4af7ad7e4ac515bc6e602e7b79e2204e25dbd10ab3aa2beef3c5a9cad2c7" } ,
{ file = "simplejson-3.17.6-cp36-cp36m-musllinux_1_1_x86_64.whl" , hash = "sha256:1c9b1ed7ed282b36571638297525f8ef80f34b3e2d600a56f962c6044f24200d" } ,
{ file = "simplejson-3.17.6-cp36-cp36m-win32.whl" , hash = "sha256:632ecbbd2228575e6860c9e49ea3cc5423764d5aa70b92acc4e74096fb434044" } ,
{ file = "simplejson-3.17.6-cp36-cp36m-win_amd64.whl" , hash = "sha256:4c09868ddb86bf79b1feb4e3e7e4a35cd6e61ddb3452b54e20cf296313622566" } ,
{ file = "simplejson-3.17.6-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:4b6bd8144f15a491c662f06814bd8eaa54b17f26095bb775411f39bacaf66837" } ,
{ file = "simplejson-3.17.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:5decdc78849617917c206b01e9fc1d694fd58caa961be816cb37d3150d613d9a" } ,
{ file = "simplejson-3.17.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:521877c7bd060470806eb6335926e27453d740ac1958eaf0d8c00911bc5e1802" } ,
{ file = "simplejson-3.17.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:65b998193bd7b0c7ecdfffbc825d808eac66279313cb67d8892bb259c9d91494" } ,
{ file = "simplejson-3.17.6-cp37-cp37m-musllinux_1_1_aarch64.whl" , hash = "sha256:ac786f6cb7aa10d44e9641c7a7d16d7f6e095b138795cd43503769d4154e0dc2" } ,
{ file = "simplejson-3.17.6-cp37-cp37m-musllinux_1_1_i686.whl" , hash = "sha256:3ff5b3464e1ce86a8de8c88e61d4836927d5595c2162cab22e96ff551b916e81" } ,
{ file = "simplejson-3.17.6-cp37-cp37m-musllinux_1_1_x86_64.whl" , hash = "sha256:69bd56b1d257a91e763256d63606937ae4eb890b18a789b66951c00062afec33" } ,
{ file = "simplejson-3.17.6-cp37-cp37m-win32.whl" , hash = "sha256:b81076552d34c27e5149a40187a8f7e2abb2d3185576a317aaf14aeeedad862a" } ,
{ file = "simplejson-3.17.6-cp37-cp37m-win_amd64.whl" , hash = "sha256:07ecaafc1b1501f275bf5acdee34a4ad33c7c24ede287183ea77a02dc071e0c0" } ,
{ file = "simplejson-3.17.6-cp38-cp38-macosx_10_9_universal2.whl" , hash = "sha256:068670af975247acbb9fc3d5393293368cda17026db467bf7a51548ee8f17ee1" } ,
{ file = "simplejson-3.17.6-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:4d1c135af0c72cb28dd259cf7ba218338f4dc027061262e46fe058b4e6a4c6a3" } ,
{ file = "simplejson-3.17.6-cp38-cp38-macosx_11_0_arm64.whl" , hash = "sha256:23fe704da910ff45e72543cbba152821685a889cf00fc58d5c8ee96a9bad5f94" } ,
{ file = "simplejson-3.17.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:f444762fed1bc1fd75187ef14a20ed900c1fbb245d45be9e834b822a0223bc81" } ,
{ file = "simplejson-3.17.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:681eb4d37c9a9a6eb9b3245a5e89d7f7b2b9895590bb08a20aa598c1eb0a1d9d" } ,
{ file = "simplejson-3.17.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:8e8607d8f6b4f9d46fee11447e334d6ab50e993dd4dbfb22f674616ce20907ab" } ,
{ file = "simplejson-3.17.6-cp38-cp38-musllinux_1_1_aarch64.whl" , hash = "sha256:b10556817f09d46d420edd982dd0653940b90151d0576f09143a8e773459f6fe" } ,
{ file = "simplejson-3.17.6-cp38-cp38-musllinux_1_1_i686.whl" , hash = "sha256:e1ec8a9ee0987d4524ffd6299e778c16cc35fef6d1a2764e609f90962f0b293a" } ,
{ file = "simplejson-3.17.6-cp38-cp38-musllinux_1_1_x86_64.whl" , hash = "sha256:0b4126cac7d69ac06ff22efd3e0b3328a4a70624fcd6bca4fc1b4e6d9e2e12bf" } ,
{ file = "simplejson-3.17.6-cp38-cp38-win32.whl" , hash = "sha256:35a49ebef25f1ebdef54262e54ae80904d8692367a9f208cdfbc38dbf649e00a" } ,
{ file = "simplejson-3.17.6-cp38-cp38-win_amd64.whl" , hash = "sha256:743cd768affaa508a21499f4858c5b824ffa2e1394ed94eb85caf47ac0732198" } ,
{ file = "simplejson-3.17.6-cp39-cp39-macosx_10_9_universal2.whl" , hash = "sha256:fb62d517a516128bacf08cb6a86ecd39fb06d08e7c4980251f5d5601d29989ba" } ,
{ file = "simplejson-3.17.6-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:12133863178a8080a3dccbf5cb2edfab0001bc41e5d6d2446af2a1131105adfe" } ,
{ file = "simplejson-3.17.6-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:5540fba2d437edaf4aa4fbb80f43f42a8334206ad1ad3b27aef577fd989f20d9" } ,
{ file = "simplejson-3.17.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:d74ee72b5071818a1a5dab47338e87f08a738cb938a3b0653b9e4d959ddd1fd9" } ,
{ file = "simplejson-3.17.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl" , hash = "sha256:28221620f4dcabdeac310846629b976e599a13f59abb21616356a85231ebd6ad" } ,
{ file = "simplejson-3.17.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:b09bc62e5193e31d7f9876220fb429ec13a6a181a24d897b9edfbbdbcd678851" } ,
{ file = "simplejson-3.17.6-cp39-cp39-musllinux_1_1_aarch64.whl" , hash = "sha256:7255a37ff50593c9b2f1afa8fafd6ef5763213c1ed5a9e2c6f5b9cc925ab979f" } ,
{ file = "simplejson-3.17.6-cp39-cp39-musllinux_1_1_i686.whl" , hash = "sha256:401d40969cee3df7bda211e57b903a534561b77a7ade0dd622a8d1a31eaa8ba7" } ,
{ file = "simplejson-3.17.6-cp39-cp39-musllinux_1_1_x86_64.whl" , hash = "sha256:a649d0f66029c7eb67042b15374bd93a26aae202591d9afd71e111dd0006b198" } ,
{ file = "simplejson-3.17.6-cp39-cp39-win32.whl" , hash = "sha256:522fad7be85de57430d6d287c4b635813932946ebf41b913fe7e880d154ade2e" } ,
{ file = "simplejson-3.17.6-cp39-cp39-win_amd64.whl" , hash = "sha256:3fe87570168b2ae018391e2b43fbf66e8593a86feccb4b0500d134c998983ccc" } ,
{ file = "simplejson-3.17.6.tar.gz" , hash = "sha256:cf98038d2abf63a1ada5730e91e84c642ba6c225b0198c3684151b1f80c5f8a6" } ,
2021-01-08 17:32:39 +01:00
]
six = [
2022-09-02 10:10:38 +02:00
{ file = "six-1.16.0-py2.py3-none-any.whl" , hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" } ,
{ file = "six-1.16.0.tar.gz" , hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926" } ,
2021-01-08 17:32:39 +01:00
]
sniffio = [
2022-09-02 15:02:34 +02:00
{ file = "sniffio-1.3.0-py3-none-any.whl" , hash = "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384" } ,
{ file = "sniffio-1.3.0.tar.gz" , hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101" } ,
2021-01-08 17:32:39 +01:00
]
2022-09-02 10:10:38 +02:00
SoundFile = [
2021-01-08 17:32:39 +01:00
{ file = "SoundFile-0.10.3.post1-py2.py3-none-any.whl" , hash = "sha256:2d17e0a6fc2af0d6c1d868bafa5ec80aae6e186a97fec8db07ad6af29842fbc7" } ,
{ file = "SoundFile-0.10.3.post1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" , hash = "sha256:5e342ee293b896d31da67617fe65d0bdca217af193991b0cb6052353b1e0e506" } ,
{ file = "SoundFile-0.10.3.post1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win32.whl" , hash = "sha256:4555438c2c4f02b39fea2ed40f6ddeda88a80cd1ee9dd129be4d5f5134698cc2" } ,
{ file = "SoundFile-0.10.3.post1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win_amd64.whl" , hash = "sha256:b361d4ac1519a2e516cabafa6bf7e93492f999f35d7d25350cd87fdc3e5cb27e" } ,
{ file = "SoundFile-0.10.3.post1.tar.gz" , hash = "sha256:490cff42650733d1832728b937fe99fa1802896f5ef4d61bcf78cf7ebecb107b" } ,
]
stempeg = [
2021-08-24 17:33:16 +02:00
{ file = "stempeg-0.2.3-py3-none-any.whl" , hash = "sha256:130f384aafeb4429718421c7437bb1c9e24c851ae55f8b1de4d26c0d59ddb6a4" } ,
{ file = "stempeg-0.2.3.tar.gz" , hash = "sha256:840bb824504d713336da6a89d62790f7ba172a099dc96f8a2bb5d32148d1a96a" } ,
2021-01-08 17:32:39 +01:00
]
tensorboard = [
2022-09-02 15:02:34 +02:00
{ file = "tensorboard-2.9.0-py3-none-any.whl" , hash = "sha256:bd78211076dca5efa27260afacfaa96cd05c7db12a6c09cc76a1d6b2987ca621" } ,
2021-08-24 17:33:16 +02:00
]
tensorboard-data-server = [
{ file = "tensorboard_data_server-0.6.1-py3-none-any.whl" , hash = "sha256:809fe9887682d35c1f7d1f54f0f40f98bb1f771b14265b453ca051e2ce58fca7" } ,
{ file = "tensorboard_data_server-0.6.1-py3-none-macosx_10_9_x86_64.whl" , hash = "sha256:fa8cef9be4fcae2f2363c88176638baf2da19c5ec90addb49b1cde05c95c88ee" } ,
{ file = "tensorboard_data_server-0.6.1-py3-none-manylinux2010_x86_64.whl" , hash = "sha256:d8237580755e58eff68d1f3abefb5b1e39ae5c8b127cc40920f9c4fb33f4b98a" } ,
2021-01-08 17:32:39 +01:00
]
tensorboard-plugin-wit = [
2022-02-11 11:45:21 +00:00
{ file = "tensorboard_plugin_wit-1.8.1-py3-none-any.whl" , hash = "sha256:ff26bdd583d155aa951ee3b152b3d0cffae8005dc697f72b44a8e8c2a77a8cbe" } ,
2021-01-08 17:32:39 +01:00
]
tensorflow = [
2022-09-02 18:05:03 +02:00
{ file = "tensorflow-2.9.0-cp310-cp310-macosx_10_14_x86_64.whl" , hash = "sha256:2125efb61952821b69446875ccccf8cdcc6c838c21224f70668b51965a0cdf91" } ,
{ file = "tensorflow-2.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:c93690a4abe2c3d804c035e1f51721a87fd60097459e783dce93600f399e1073" } ,
{ file = "tensorflow-2.9.0-cp310-cp310-win_amd64.whl" , hash = "sha256:dd2eb802a254b6a120c64843c4b727e7dc0fc412055a1542ad792dbb358da27d" } ,
{ file = "tensorflow-2.9.0-cp37-cp37m-macosx_10_14_x86_64.whl" , hash = "sha256:92f48fa903ac5cad7bbd8231b10f34d4369ca62dd5f0c7ca975603056e466cd3" } ,
{ file = "tensorflow-2.9.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:71bcbd327dc8ba664190e78dcdfc94f839e558c08ffc55e4930ac1fdd05b4246" } ,
{ file = "tensorflow-2.9.0-cp37-cp37m-win_amd64.whl" , hash = "sha256:d7a73577f7b5cac106b9b9c8fc1c2e6dec4a2e5890328eef3b6ce6a58d5fcaee" } ,
{ file = "tensorflow-2.9.0-cp38-cp38-macosx_10_14_x86_64.whl" , hash = "sha256:e41c998e1e865baabd58fb30d4536282af894931218e2f6dda2ab0aad57af7d1" } ,
{ file = "tensorflow-2.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:6bf4f872a246bff9993b800acabe3daeca647f6dfa62acc58ce6c90ab7f5596e" } ,
{ file = "tensorflow-2.9.0-cp38-cp38-win_amd64.whl" , hash = "sha256:6b049df845b08c76e36f420a93f071895cc1de9bdfc09df8bd3712bc8c9eafd4" } ,
{ file = "tensorflow-2.9.0-cp39-cp39-macosx_10_14_x86_64.whl" , hash = "sha256:f9167b594af16becdf882a6d9a44851cde7fa8e9619a07f8c10a9d8eb31ead1d" } ,
{ file = "tensorflow-2.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:4ffe5c36e45552d98ff1b0a7edfa7592626e307515affbb11924bf48da40989a" } ,
{ file = "tensorflow-2.9.0-cp39-cp39-win_amd64.whl" , hash = "sha256:bb17b23d96588c97869b58fd874887ea7e25efa69d80122f5a6d1a26e8cb897e" } ,
2021-01-08 17:32:39 +01:00
]
tensorflow-estimator = [
2022-09-02 18:05:03 +02:00
{ file = "tensorflow_estimator-2.9.0-py2.py3-none-any.whl" , hash = "sha256:e9762bb302f51bc1eb2f35d19f0190a6a2d809d754d5def788c4328fe3746744" } ,
2022-09-02 10:10:38 +02:00
]
tensorflow-io-gcs-filesystem = [
2022-09-02 15:02:34 +02:00
{ file = "tensorflow_io_gcs_filesystem-0.26.0-cp310-cp310-macosx_10_14_x86_64.whl" , hash = "sha256:4222a9d0c0ddeca2fd2bfd70f5ed149346f5ba12ffe65d817d8e18393341d8e2" } ,
{ file = "tensorflow_io_gcs_filesystem-0.26.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:5457eeef1f0f5f294225808b2290a251a2e4639ec66db9d32aa4ae62e807d7e8" } ,
{ file = "tensorflow_io_gcs_filesystem-0.26.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:4c71cebb26ce10e6e48dc46e6fc0acef5329b01f75a5e76c7defb77175bf97f7" } ,
{ file = "tensorflow_io_gcs_filesystem-0.26.0-cp310-cp310-win_amd64.whl" , hash = "sha256:1c165595c7a67668b44c7ffb9746ffb351c630940d9cca7f2b31f8adf7a36b94" } ,
{ file = "tensorflow_io_gcs_filesystem-0.26.0-cp37-cp37m-macosx_10_14_x86_64.whl" , hash = "sha256:c20e1f95b904f43ac86fdb251f222be2c3e7026e9ddbde2a3b6a456f26a83944" } ,
{ file = "tensorflow_io_gcs_filesystem-0.26.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:1cccdc12ec304a7ab3e6f85919ba5a77c2bf751b3d0f9e62196ee7df11a8136a" } ,
{ file = "tensorflow_io_gcs_filesystem-0.26.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:94645cac4449dd2ccc40327c23d0256cf4e96597e5a55116a91076e9dc96023e" } ,
{ file = "tensorflow_io_gcs_filesystem-0.26.0-cp37-cp37m-win_amd64.whl" , hash = "sha256:ce0d7eaaebfcb5fdcff161af0e8a4b94d5dc346299111c08373d66058011a16d" } ,
{ file = "tensorflow_io_gcs_filesystem-0.26.0-cp38-cp38-macosx_10_14_x86_64.whl" , hash = "sha256:e9569dadd79b2d4b28dbe5be47c378a884414a85c89eaeae6115bcba4f3cbb96" } ,
{ file = "tensorflow_io_gcs_filesystem-0.26.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:84a463e228cde296fc63672902a2eceac9fec5f8ae7605e9f18824db591e7f5c" } ,
{ file = "tensorflow_io_gcs_filesystem-0.26.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:531214e48ef64a96f565550b283e75cf0119abff14048a11a25453b47ec5b61c" } ,
{ file = "tensorflow_io_gcs_filesystem-0.26.0-cp38-cp38-win_amd64.whl" , hash = "sha256:44b28c9c6a9e25774a53ec2e85ed4d0b5c4db3a7d3a4011ade94fa9ee636393c" } ,
{ file = "tensorflow_io_gcs_filesystem-0.26.0-cp39-cp39-macosx_10_14_x86_64.whl" , hash = "sha256:09f9df13737e2b4d92b73653509281d77732ef9a90a1ebef824511ce5431eb0a" } ,
{ file = "tensorflow_io_gcs_filesystem-0.26.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl" , hash = "sha256:c71438e6459f52462b95f98ab17b20cd1a269a1efe837e4df426a0b79359f3b7" } ,
{ file = "tensorflow_io_gcs_filesystem-0.26.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:bd285595afe03740553710ccdbd1397d69a8e48d758c731c0de1f1c5a71a9fe5" } ,
{ file = "tensorflow_io_gcs_filesystem-0.26.0-cp39-cp39-win_amd64.whl" , hash = "sha256:2940b4ab6848ef5ec34dc3c140b5ae9eba0da13453da839c30ebe3461a6eb51d" } ,
2021-01-08 17:32:39 +01:00
]
termcolor = [
{ file = "termcolor-1.1.0.tar.gz" , hash = "sha256:1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b" } ,
]
threadpoolctl = [
2022-02-11 11:45:21 +00:00
{ file = "threadpoolctl-3.1.0-py3-none-any.whl" , hash = "sha256:8b99adda265feb6773280df41eece7b2e6561b772d21ffd52e372f999024907b" } ,
{ file = "threadpoolctl-3.1.0.tar.gz" , hash = "sha256:a335baacfaa4400ae1f0d8e3a58d6674d2f8828e3716bb2802c44955ad391380" } ,
2021-01-08 17:32:39 +01:00
]
toml = [
{ file = "toml-0.10.2-py2.py3-none-any.whl" , hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b" } ,
{ file = "toml-0.10.2.tar.gz" , hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f" } ,
]
2022-02-11 11:45:21 +00:00
tomli = [
{ file = "tomli-1.2.3-py3-none-any.whl" , hash = "sha256:e3069e4be3ead9668e21cb9b074cd948f7b3113fd9c8bba083f48247aab8b11c" } ,
{ file = "tomli-1.2.3.tar.gz" , hash = "sha256:05b6166bff487dc068d322585c7ea4ef78deed501cc124060e0f238e89a9231f" } ,
]
2021-01-08 17:32:39 +01:00
tqdm = [
2022-09-02 10:10:38 +02:00
{ file = "tqdm-4.64.0-py2.py3-none-any.whl" , hash = "sha256:74a2cdefe14d11442cedf3ba4e21a3b84ff9a2dbdc6cfae2c34addb2a14a5ea6" } ,
{ file = "tqdm-4.64.0.tar.gz" , hash = "sha256:40be55d30e200777a307a7585aee69e4eabb46b4ec6a4b4a5f2d9f11e7d5408d" } ,
2021-01-08 17:32:39 +01:00
]
typed-ast = [
2021-08-24 17:33:16 +02: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" } ,
2021-01-08 17:32:39 +01:00
]
typer = [
{ file = "typer-0.3.2-py3-none-any.whl" , hash = "sha256:ba58b920ce851b12a2d790143009fa00ac1d05b3ff3257061ff69dbdfc3d161b" } ,
{ file = "typer-0.3.2.tar.gz" , hash = "sha256:5455d750122cff96745b0dec87368f56d023725a7ebc9d2e54dd23dc86816303" } ,
]
typing-extensions = [
2022-09-02 15:02:34 +02:00
{ file = "typing_extensions-4.3.0-py3-none-any.whl" , hash = "sha256:25642c956049920a5aa49edcdd6ab1e06d7e5d467fc00e0506c44ac86fbfca02" } ,
{ file = "typing_extensions-4.3.0.tar.gz" , hash = "sha256:e6d2677a32f47fc7eb2795db1dd15c1f34eff616bcaf2cfb5e997f854fa1c4a6" } ,
2021-01-08 17:32:39 +01:00
]
urllib3 = [
2022-09-02 10:10:38 +02:00
{ file = "urllib3-1.26.12-py2.py3-none-any.whl" , hash = "sha256:b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997" } ,
{ file = "urllib3-1.26.12.tar.gz" , hash = "sha256:3fa96cf423e6987997fc326ae8df396db2a8b7c667747d47ddd8ecba91f4a74e" } ,
2021-01-08 17:32:39 +01:00
]
2022-09-02 10:10:38 +02:00
Werkzeug = [
2022-09-02 15:02:34 +02:00
{ file = "Werkzeug-2.2.2-py3-none-any.whl" , hash = "sha256:f979ab81f58d7318e064e99c4506445d60135ac5cd2e177a2de0089bfd4c9bd5" } ,
{ file = "Werkzeug-2.2.2.tar.gz" , hash = "sha256:7ea2d48322cc7c0f8b3a215ed73eabd7b5d75d0b50e31ab006286ccff9e00b8f" } ,
2021-01-08 17:32:39 +01:00
]
2022-09-02 10:10:38 +02:00
wheel = [
{ file = "wheel-0.37.1-py2.py3-none-any.whl" , hash = "sha256:4bdcd7d840138086126cd09254dc6195fb4fc6f01c050a1d7236f2630db1d22a" } ,
{ file = "wheel-0.37.1.tar.gz" , hash = "sha256:e9a504e793efbca1b8e0e9cb979a249cf4a0a7b5b8c9e8b65a5e39d49529c1c4" } ,
]
2021-01-08 17:32:39 +01:00
wrapt = [
2022-09-02 10:10:38 +02:00
{ file = "wrapt-1.14.1-cp27-cp27m-macosx_10_9_x86_64.whl" , hash = "sha256:1b376b3f4896e7930f1f772ac4b064ac12598d1c38d04907e696cc4d794b43d3" } ,
{ file = "wrapt-1.14.1-cp27-cp27m-manylinux1_i686.whl" , hash = "sha256:903500616422a40a98a5a3c4ff4ed9d0066f3b4c951fa286018ecdf0750194ef" } ,
{ file = "wrapt-1.14.1-cp27-cp27m-manylinux1_x86_64.whl" , hash = "sha256:5a9a0d155deafd9448baff28c08e150d9b24ff010e899311ddd63c45c2445e28" } ,
{ file = "wrapt-1.14.1-cp27-cp27m-manylinux2010_i686.whl" , hash = "sha256:ddaea91abf8b0d13443f6dac52e89051a5063c7d014710dcb4d4abb2ff811a59" } ,
{ file = "wrapt-1.14.1-cp27-cp27m-manylinux2010_x86_64.whl" , hash = "sha256:36f582d0c6bc99d5f39cd3ac2a9062e57f3cf606ade29a0a0d6b323462f4dd87" } ,
{ file = "wrapt-1.14.1-cp27-cp27mu-manylinux1_i686.whl" , hash = "sha256:7ef58fb89674095bfc57c4069e95d7a31cfdc0939e2a579882ac7d55aadfd2a1" } ,
{ file = "wrapt-1.14.1-cp27-cp27mu-manylinux1_x86_64.whl" , hash = "sha256:e2f83e18fe2f4c9e7db597e988f72712c0c3676d337d8b101f6758107c42425b" } ,
{ file = "wrapt-1.14.1-cp27-cp27mu-manylinux2010_i686.whl" , hash = "sha256:ee2b1b1769f6707a8a445162ea16dddf74285c3964f605877a20e38545c3c462" } ,
{ file = "wrapt-1.14.1-cp27-cp27mu-manylinux2010_x86_64.whl" , hash = "sha256:833b58d5d0b7e5b9832869f039203389ac7cbf01765639c7309fd50ef619e0b1" } ,
{ file = "wrapt-1.14.1-cp310-cp310-macosx_10_9_x86_64.whl" , hash = "sha256:80bb5c256f1415f747011dc3604b59bc1f91c6e7150bd7db03b19170ee06b320" } ,
{ file = "wrapt-1.14.1-cp310-cp310-macosx_11_0_arm64.whl" , hash = "sha256:07f7a7d0f388028b2df1d916e94bbb40624c59b48ecc6cbc232546706fac74c2" } ,
{ file = "wrapt-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:02b41b633c6261feff8ddd8d11c711df6842aba629fdd3da10249a53211a72c4" } ,
{ file = "wrapt-1.14.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:2fe803deacd09a233e4762a1adcea5db5d31e6be577a43352936179d14d90069" } ,
{ file = "wrapt-1.14.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:257fd78c513e0fb5cdbe058c27a0624c9884e735bbd131935fd49e9fe719d310" } ,
{ file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_aarch64.whl" , hash = "sha256:4fcc4649dc762cddacd193e6b55bc02edca674067f5f98166d7713b193932b7f" } ,
{ file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_i686.whl" , hash = "sha256:11871514607b15cfeb87c547a49bca19fde402f32e2b1c24a632506c0a756656" } ,
{ file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_x86_64.whl" , hash = "sha256:8ad85f7f4e20964db4daadcab70b47ab05c7c1cf2a7c1e51087bfaa83831854c" } ,
{ file = "wrapt-1.14.1-cp310-cp310-win32.whl" , hash = "sha256:a9a52172be0b5aae932bef82a79ec0a0ce87288c7d132946d645eba03f0ad8a8" } ,
{ file = "wrapt-1.14.1-cp310-cp310-win_amd64.whl" , hash = "sha256:6d323e1554b3d22cfc03cd3243b5bb815a51f5249fdcbb86fda4bf62bab9e164" } ,
{ file = "wrapt-1.14.1-cp35-cp35m-manylinux1_i686.whl" , hash = "sha256:43ca3bbbe97af00f49efb06e352eae40434ca9d915906f77def219b88e85d907" } ,
{ file = "wrapt-1.14.1-cp35-cp35m-manylinux1_x86_64.whl" , hash = "sha256:6b1a564e6cb69922c7fe3a678b9f9a3c54e72b469875aa8018f18b4d1dd1adf3" } ,
{ file = "wrapt-1.14.1-cp35-cp35m-manylinux2010_i686.whl" , hash = "sha256:00b6d4ea20a906c0ca56d84f93065b398ab74b927a7a3dbd470f6fc503f95dc3" } ,
{ file = "wrapt-1.14.1-cp35-cp35m-manylinux2010_x86_64.whl" , hash = "sha256:a85d2b46be66a71bedde836d9e41859879cc54a2a04fad1191eb50c2066f6e9d" } ,
{ file = "wrapt-1.14.1-cp35-cp35m-win32.whl" , hash = "sha256:dbcda74c67263139358f4d188ae5faae95c30929281bc6866d00573783c422b7" } ,
{ file = "wrapt-1.14.1-cp35-cp35m-win_amd64.whl" , hash = "sha256:b21bb4c09ffabfa0e85e3a6b623e19b80e7acd709b9f91452b8297ace2a8ab00" } ,
{ file = "wrapt-1.14.1-cp36-cp36m-macosx_10_9_x86_64.whl" , hash = "sha256:9e0fd32e0148dd5dea6af5fee42beb949098564cc23211a88d799e434255a1f4" } ,
{ file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:9736af4641846491aedb3c3f56b9bc5568d92b0692303b5a305301a95dfd38b1" } ,
{ file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:5b02d65b9ccf0ef6c34cba6cf5bf2aab1bb2f49c6090bafeecc9cd81ad4ea1c1" } ,
{ file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:21ac0156c4b089b330b7666db40feee30a5d52634cc4560e1905d6529a3897ff" } ,
{ file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_aarch64.whl" , hash = "sha256:9f3e6f9e05148ff90002b884fbc2a86bd303ae847e472f44ecc06c2cd2fcdb2d" } ,
{ file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_i686.whl" , hash = "sha256:6e743de5e9c3d1b7185870f480587b75b1cb604832e380d64f9504a0535912d1" } ,
{ file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_x86_64.whl" , hash = "sha256:d79d7d5dc8a32b7093e81e97dad755127ff77bcc899e845f41bf71747af0c569" } ,
{ file = "wrapt-1.14.1-cp36-cp36m-win32.whl" , hash = "sha256:81b19725065dcb43df02b37e03278c011a09e49757287dca60c5aecdd5a0b8ed" } ,
{ file = "wrapt-1.14.1-cp36-cp36m-win_amd64.whl" , hash = "sha256:b014c23646a467558be7da3d6b9fa409b2c567d2110599b7cf9a0c5992b3b471" } ,
{ file = "wrapt-1.14.1-cp37-cp37m-macosx_10_9_x86_64.whl" , hash = "sha256:88bd7b6bd70a5b6803c1abf6bca012f7ed963e58c68d76ee20b9d751c74a3248" } ,
{ file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:b5901a312f4d14c59918c221323068fad0540e34324925c8475263841dbdfe68" } ,
{ file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:d77c85fedff92cf788face9bfa3ebaa364448ebb1d765302e9af11bf449ca36d" } ,
{ file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:8d649d616e5c6a678b26d15ece345354f7c2286acd6db868e65fcc5ff7c24a77" } ,
{ file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_aarch64.whl" , hash = "sha256:7d2872609603cb35ca513d7404a94d6d608fc13211563571117046c9d2bcc3d7" } ,
{ file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_i686.whl" , hash = "sha256:ee6acae74a2b91865910eef5e7de37dc6895ad96fa23603d1d27ea69df545015" } ,
{ file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_x86_64.whl" , hash = "sha256:2b39d38039a1fdad98c87279b48bc5dce2c0ca0d73483b12cb72aa9609278e8a" } ,
{ file = "wrapt-1.14.1-cp37-cp37m-win32.whl" , hash = "sha256:60db23fa423575eeb65ea430cee741acb7c26a1365d103f7b0f6ec412b893853" } ,
{ file = "wrapt-1.14.1-cp37-cp37m-win_amd64.whl" , hash = "sha256:709fe01086a55cf79d20f741f39325018f4df051ef39fe921b1ebe780a66184c" } ,
{ file = "wrapt-1.14.1-cp38-cp38-macosx_10_9_x86_64.whl" , hash = "sha256:8c0ce1e99116d5ab21355d8ebe53d9460366704ea38ae4d9f6933188f327b456" } ,
{ file = "wrapt-1.14.1-cp38-cp38-macosx_11_0_arm64.whl" , hash = "sha256:e3fb1677c720409d5f671e39bac6c9e0e422584e5f518bfd50aa4cbbea02433f" } ,
{ file = "wrapt-1.14.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:642c2e7a804fcf18c222e1060df25fc210b9c58db7c91416fb055897fc27e8cc" } ,
{ file = "wrapt-1.14.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:7b7c050ae976e286906dd3f26009e117eb000fb2cf3533398c5ad9ccc86867b1" } ,
{ file = "wrapt-1.14.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:ef3f72c9666bba2bab70d2a8b79f2c6d2c1a42a7f7e2b0ec83bb2f9e383950af" } ,
{ file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_aarch64.whl" , hash = "sha256:01c205616a89d09827986bc4e859bcabd64f5a0662a7fe95e0d359424e0e071b" } ,
{ file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_i686.whl" , hash = "sha256:5a0f54ce2c092aaf439813735584b9537cad479575a09892b8352fea5e988dc0" } ,
{ file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_x86_64.whl" , hash = "sha256:2cf71233a0ed05ccdabe209c606fe0bac7379fdcf687f39b944420d2a09fdb57" } ,
{ file = "wrapt-1.14.1-cp38-cp38-win32.whl" , hash = "sha256:aa31fdcc33fef9eb2552cbcbfee7773d5a6792c137b359e82879c101e98584c5" } ,
{ file = "wrapt-1.14.1-cp38-cp38-win_amd64.whl" , hash = "sha256:d1967f46ea8f2db647c786e78d8cc7e4313dbd1b0aca360592d8027b8508e24d" } ,
{ file = "wrapt-1.14.1-cp39-cp39-macosx_10_9_x86_64.whl" , hash = "sha256:3232822c7d98d23895ccc443bbdf57c7412c5a65996c30442ebe6ed3df335383" } ,
{ file = "wrapt-1.14.1-cp39-cp39-macosx_11_0_arm64.whl" , hash = "sha256:988635d122aaf2bdcef9e795435662bcd65b02f4f4c1ae37fbee7401c440b3a7" } ,
{ file = "wrapt-1.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl" , hash = "sha256:9cca3c2cdadb362116235fdbd411735de4328c61425b0aa9f872fd76d02c4e86" } ,
{ file = "wrapt-1.14.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl" , hash = "sha256:d52a25136894c63de15a35bc0bdc5adb4b0e173b9c0d07a2be9d3ca64a332735" } ,
{ file = "wrapt-1.14.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , hash = "sha256:40e7bc81c9e2b2734ea4bc1aceb8a8f0ceaac7c5299bc5d69e37c44d9081d43b" } ,
{ file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_aarch64.whl" , hash = "sha256:b9b7a708dd92306328117d8c4b62e2194d00c365f18eff11a9b53c6f923b01e3" } ,
{ file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_i686.whl" , hash = "sha256:6a9a25751acb379b466ff6be78a315e2b439d4c94c1e99cb7266d40a537995d3" } ,
{ file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_x86_64.whl" , hash = "sha256:34aa51c45f28ba7f12accd624225e2b1e5a3a45206aa191f6f9aac931d9d56fe" } ,
{ file = "wrapt-1.14.1-cp39-cp39-win32.whl" , hash = "sha256:dee0ce50c6a2dd9056c20db781e9c1cfd33e77d2d569f5d1d9321c641bb903d5" } ,
{ file = "wrapt-1.14.1-cp39-cp39-win_amd64.whl" , hash = "sha256:dee60e1de1898bde3b238f18340eec6148986da0455d8ba7848d50470a7a32fb" } ,
{ file = "wrapt-1.14.1.tar.gz" , hash = "sha256:380a85cf89e0e69b7cfbe2ea9f765f004ff419f34194018a6827ac0e3edfed4d" } ,
2021-01-08 17:32:39 +01:00
]
zipp = [
2022-09-02 15:02:34 +02:00
{ file = "zipp-3.8.1-py3-none-any.whl" , hash = "sha256:47c40d7fe183a6f21403a199b3e4192cca5774656965b0a4988ad2f8feb5f009" } ,
{ file = "zipp-3.8.1.tar.gz" , hash = "sha256:05b45f1ee8f807d0cc928485ca40a07cb491cf092ff587c0df9cb1fd154848d2" } ,
2021-01-08 17:32:39 +01:00
]