pybiolib 0.2.951__py3-none-any.whl → 1.2.1890__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- biolib/__init__.py +357 -11
- biolib/_data_record/data_record.py +380 -0
- biolib/_index/__init__.py +0 -0
- biolib/_index/index.py +55 -0
- biolib/_index/query_result.py +103 -0
- biolib/_internal/__init__.py +0 -0
- biolib/_internal/add_copilot_prompts.py +58 -0
- biolib/_internal/add_gui_files.py +81 -0
- biolib/_internal/data_record/__init__.py +1 -0
- biolib/_internal/data_record/data_record.py +85 -0
- biolib/_internal/data_record/push_data.py +116 -0
- biolib/_internal/data_record/remote_storage_endpoint.py +43 -0
- biolib/_internal/errors.py +5 -0
- biolib/_internal/file_utils.py +125 -0
- biolib/_internal/fuse_mount/__init__.py +1 -0
- biolib/_internal/fuse_mount/experiment_fuse_mount.py +209 -0
- biolib/_internal/http_client.py +159 -0
- biolib/_internal/lfs/__init__.py +1 -0
- biolib/_internal/lfs/cache.py +51 -0
- biolib/_internal/libs/__init__.py +1 -0
- biolib/_internal/libs/fusepy/__init__.py +1257 -0
- biolib/_internal/push_application.py +488 -0
- biolib/_internal/runtime.py +22 -0
- biolib/_internal/string_utils.py +13 -0
- biolib/_internal/templates/__init__.py +1 -0
- biolib/_internal/templates/copilot_template/.github/instructions/general-app-knowledge.instructions.md +10 -0
- biolib/_internal/templates/copilot_template/.github/instructions/style-general.instructions.md +20 -0
- biolib/_internal/templates/copilot_template/.github/instructions/style-python.instructions.md +16 -0
- biolib/_internal/templates/copilot_template/.github/instructions/style-react-ts.instructions.md +47 -0
- biolib/_internal/templates/copilot_template/.github/prompts/biolib_app_inputs.prompt.md +11 -0
- biolib/_internal/templates/copilot_template/.github/prompts/biolib_onboard_repo.prompt.md +19 -0
- biolib/_internal/templates/copilot_template/.github/prompts/biolib_run_apps.prompt.md +12 -0
- biolib/_internal/templates/dashboard_template/.biolib/config.yml +5 -0
- biolib/_internal/templates/github_workflow_template/.github/workflows/biolib.yml +21 -0
- biolib/_internal/templates/gitignore_template/.gitignore +10 -0
- biolib/_internal/templates/gui_template/.yarnrc.yml +1 -0
- biolib/_internal/templates/gui_template/App.tsx +53 -0
- biolib/_internal/templates/gui_template/Dockerfile +27 -0
- biolib/_internal/templates/gui_template/biolib-sdk.ts +82 -0
- biolib/_internal/templates/gui_template/dev-data/output.json +7 -0
- biolib/_internal/templates/gui_template/index.css +5 -0
- biolib/_internal/templates/gui_template/index.html +13 -0
- biolib/_internal/templates/gui_template/index.tsx +10 -0
- biolib/_internal/templates/gui_template/package.json +27 -0
- biolib/_internal/templates/gui_template/tsconfig.json +24 -0
- biolib/_internal/templates/gui_template/vite-plugin-dev-data.ts +50 -0
- biolib/_internal/templates/gui_template/vite.config.mts +10 -0
- biolib/_internal/templates/init_template/.biolib/config.yml +19 -0
- biolib/_internal/templates/init_template/Dockerfile +14 -0
- biolib/_internal/templates/init_template/requirements.txt +1 -0
- biolib/_internal/templates/init_template/run.py +12 -0
- biolib/_internal/templates/init_template/run.sh +4 -0
- biolib/_internal/templates/templates.py +25 -0
- biolib/_internal/tree_utils.py +106 -0
- biolib/_internal/utils/__init__.py +65 -0
- biolib/_internal/utils/auth.py +46 -0
- biolib/_internal/utils/job_url.py +33 -0
- biolib/_internal/utils/multinode.py +263 -0
- biolib/_runtime/runtime.py +157 -0
- biolib/_session/session.py +44 -0
- biolib/_shared/__init__.py +0 -0
- biolib/_shared/types/__init__.py +74 -0
- biolib/_shared/types/account.py +12 -0
- biolib/_shared/types/account_member.py +8 -0
- biolib/_shared/types/app.py +9 -0
- biolib/_shared/types/data_record.py +40 -0
- biolib/_shared/types/experiment.py +32 -0
- biolib/_shared/types/file_node.py +17 -0
- biolib/_shared/types/push.py +6 -0
- biolib/_shared/types/resource.py +37 -0
- biolib/_shared/types/resource_deploy_key.py +11 -0
- biolib/_shared/types/resource_permission.py +14 -0
- biolib/_shared/types/resource_version.py +19 -0
- biolib/_shared/types/result.py +14 -0
- biolib/_shared/types/typing.py +10 -0
- biolib/_shared/types/user.py +19 -0
- biolib/_shared/utils/__init__.py +7 -0
- biolib/_shared/utils/resource_uri.py +75 -0
- biolib/api/__init__.py +6 -0
- biolib/api/client.py +168 -0
- biolib/app/app.py +252 -49
- biolib/app/search_apps.py +45 -0
- biolib/biolib_api_client/api_client.py +126 -31
- biolib/biolib_api_client/app_types.py +24 -4
- biolib/biolib_api_client/auth.py +31 -8
- biolib/biolib_api_client/biolib_app_api.py +147 -52
- biolib/biolib_api_client/biolib_job_api.py +161 -141
- biolib/biolib_api_client/job_types.py +21 -5
- biolib/biolib_api_client/lfs_types.py +7 -23
- biolib/biolib_api_client/user_state.py +56 -0
- biolib/biolib_binary_format/__init__.py +1 -4
- biolib/biolib_binary_format/file_in_container.py +105 -0
- biolib/biolib_binary_format/module_input.py +24 -7
- biolib/biolib_binary_format/module_output_v2.py +149 -0
- biolib/biolib_binary_format/remote_endpoints.py +34 -0
- biolib/biolib_binary_format/remote_stream_seeker.py +59 -0
- biolib/biolib_binary_format/saved_job.py +3 -2
- biolib/biolib_binary_format/{attestation_document.py → stdout_and_stderr.py} +8 -8
- biolib/biolib_binary_format/system_status_update.py +3 -2
- biolib/biolib_binary_format/utils.py +175 -0
- biolib/biolib_docker_client/__init__.py +11 -2
- biolib/biolib_errors.py +36 -0
- biolib/biolib_logging.py +27 -10
- biolib/cli/__init__.py +38 -0
- biolib/cli/auth.py +46 -0
- biolib/cli/data_record.py +164 -0
- biolib/cli/index.py +32 -0
- biolib/cli/init.py +421 -0
- biolib/cli/lfs.py +101 -0
- biolib/cli/push.py +50 -0
- biolib/cli/run.py +63 -0
- biolib/cli/runtime.py +14 -0
- biolib/cli/sdk.py +16 -0
- biolib/cli/start.py +56 -0
- biolib/compute_node/cloud_utils/cloud_utils.py +110 -161
- biolib/compute_node/job_worker/cache_state.py +66 -88
- biolib/compute_node/job_worker/cache_types.py +1 -6
- biolib/compute_node/job_worker/docker_image_cache.py +112 -37
- biolib/compute_node/job_worker/executors/__init__.py +0 -3
- biolib/compute_node/job_worker/executors/docker_executor.py +532 -199
- biolib/compute_node/job_worker/executors/docker_types.py +9 -1
- biolib/compute_node/job_worker/executors/types.py +19 -9
- biolib/compute_node/job_worker/job_legacy_input_wait_timeout_thread.py +30 -0
- biolib/compute_node/job_worker/job_max_runtime_timer_thread.py +3 -5
- biolib/compute_node/job_worker/job_storage.py +108 -0
- biolib/compute_node/job_worker/job_worker.py +397 -212
- biolib/compute_node/job_worker/large_file_system.py +87 -38
- biolib/compute_node/job_worker/network_alloc.py +99 -0
- biolib/compute_node/job_worker/network_buffer.py +240 -0
- biolib/compute_node/job_worker/utilization_reporter_thread.py +197 -0
- biolib/compute_node/job_worker/utils.py +9 -24
- biolib/compute_node/remote_host_proxy.py +400 -98
- biolib/compute_node/utils.py +31 -9
- biolib/compute_node/webserver/compute_node_results_proxy.py +189 -0
- biolib/compute_node/webserver/proxy_utils.py +28 -0
- biolib/compute_node/webserver/webserver.py +130 -44
- biolib/compute_node/webserver/webserver_types.py +2 -6
- biolib/compute_node/webserver/webserver_utils.py +77 -12
- biolib/compute_node/webserver/worker_thread.py +183 -42
- biolib/experiments/__init__.py +0 -0
- biolib/experiments/experiment.py +356 -0
- biolib/jobs/__init__.py +1 -0
- biolib/jobs/job.py +741 -0
- biolib/jobs/job_result.py +185 -0
- biolib/jobs/types.py +50 -0
- biolib/py.typed +0 -0
- biolib/runtime/__init__.py +14 -0
- biolib/sdk/__init__.py +91 -0
- biolib/tables.py +34 -0
- biolib/typing_utils.py +2 -7
- biolib/user/__init__.py +1 -0
- biolib/user/sign_in.py +54 -0
- biolib/utils/__init__.py +162 -0
- biolib/utils/cache_state.py +94 -0
- biolib/utils/multipart_uploader.py +194 -0
- biolib/utils/seq_util.py +150 -0
- biolib/utils/zip/remote_zip.py +640 -0
- pybiolib-1.2.1890.dist-info/METADATA +41 -0
- pybiolib-1.2.1890.dist-info/RECORD +177 -0
- {pybiolib-0.2.951.dist-info → pybiolib-1.2.1890.dist-info}/WHEEL +1 -1
- pybiolib-1.2.1890.dist-info/entry_points.txt +2 -0
- README.md +0 -17
- biolib/app/app_result.py +0 -68
- biolib/app/utils.py +0 -62
- biolib/biolib-js/0-biolib.worker.js +0 -1
- biolib/biolib-js/1-biolib.worker.js +0 -1
- biolib/biolib-js/2-biolib.worker.js +0 -1
- biolib/biolib-js/3-biolib.worker.js +0 -1
- biolib/biolib-js/4-biolib.worker.js +0 -1
- biolib/biolib-js/5-biolib.worker.js +0 -1
- biolib/biolib-js/6-biolib.worker.js +0 -1
- biolib/biolib-js/index.html +0 -10
- biolib/biolib-js/main-biolib.js +0 -1
- biolib/biolib_api_client/biolib_account_api.py +0 -21
- biolib/biolib_api_client/biolib_large_file_system_api.py +0 -108
- biolib/biolib_binary_format/aes_encrypted_package.py +0 -42
- biolib/biolib_binary_format/module_output.py +0 -58
- biolib/biolib_binary_format/rsa_encrypted_aes_package.py +0 -57
- biolib/biolib_push.py +0 -114
- biolib/cli.py +0 -203
- biolib/cli_utils.py +0 -273
- biolib/compute_node/cloud_utils/enclave_parent_types.py +0 -7
- biolib/compute_node/enclave/__init__.py +0 -2
- biolib/compute_node/enclave/enclave_remote_hosts.py +0 -53
- biolib/compute_node/enclave/nitro_secure_module_utils.py +0 -64
- biolib/compute_node/job_worker/executors/base_executor.py +0 -18
- biolib/compute_node/job_worker/executors/pyppeteer_executor.py +0 -173
- biolib/compute_node/job_worker/executors/remote/__init__.py +0 -1
- biolib/compute_node/job_worker/executors/remote/nitro_enclave_utils.py +0 -81
- biolib/compute_node/job_worker/executors/remote/remote_executor.py +0 -51
- biolib/lfs.py +0 -196
- biolib/pyppeteer/.circleci/config.yml +0 -100
- biolib/pyppeteer/.coveragerc +0 -3
- biolib/pyppeteer/.gitignore +0 -89
- biolib/pyppeteer/.pre-commit-config.yaml +0 -28
- biolib/pyppeteer/CHANGES.md +0 -253
- biolib/pyppeteer/CONTRIBUTING.md +0 -26
- biolib/pyppeteer/LICENSE +0 -12
- biolib/pyppeteer/README.md +0 -137
- biolib/pyppeteer/docs/Makefile +0 -177
- biolib/pyppeteer/docs/_static/custom.css +0 -28
- biolib/pyppeteer/docs/_templates/layout.html +0 -10
- biolib/pyppeteer/docs/changes.md +0 -1
- biolib/pyppeteer/docs/conf.py +0 -299
- biolib/pyppeteer/docs/index.md +0 -21
- biolib/pyppeteer/docs/make.bat +0 -242
- biolib/pyppeteer/docs/reference.md +0 -211
- biolib/pyppeteer/docs/server.py +0 -60
- biolib/pyppeteer/poetry.lock +0 -1699
- biolib/pyppeteer/pyppeteer/__init__.py +0 -135
- biolib/pyppeteer/pyppeteer/accessibility.py +0 -286
- biolib/pyppeteer/pyppeteer/browser.py +0 -401
- biolib/pyppeteer/pyppeteer/browser_fetcher.py +0 -194
- biolib/pyppeteer/pyppeteer/command.py +0 -22
- biolib/pyppeteer/pyppeteer/connection/__init__.py +0 -242
- biolib/pyppeteer/pyppeteer/connection/cdpsession.py +0 -101
- biolib/pyppeteer/pyppeteer/coverage.py +0 -346
- biolib/pyppeteer/pyppeteer/device_descriptors.py +0 -787
- biolib/pyppeteer/pyppeteer/dialog.py +0 -79
- biolib/pyppeteer/pyppeteer/domworld.py +0 -597
- biolib/pyppeteer/pyppeteer/emulation_manager.py +0 -53
- biolib/pyppeteer/pyppeteer/errors.py +0 -48
- biolib/pyppeteer/pyppeteer/events.py +0 -63
- biolib/pyppeteer/pyppeteer/execution_context.py +0 -156
- biolib/pyppeteer/pyppeteer/frame/__init__.py +0 -299
- biolib/pyppeteer/pyppeteer/frame/frame_manager.py +0 -306
- biolib/pyppeteer/pyppeteer/helpers.py +0 -245
- biolib/pyppeteer/pyppeteer/input.py +0 -371
- biolib/pyppeteer/pyppeteer/jshandle.py +0 -598
- biolib/pyppeteer/pyppeteer/launcher.py +0 -683
- biolib/pyppeteer/pyppeteer/lifecycle_watcher.py +0 -169
- biolib/pyppeteer/pyppeteer/models/__init__.py +0 -103
- biolib/pyppeteer/pyppeteer/models/_protocol.py +0 -12460
- biolib/pyppeteer/pyppeteer/multimap.py +0 -82
- biolib/pyppeteer/pyppeteer/network_manager.py +0 -678
- biolib/pyppeteer/pyppeteer/options.py +0 -8
- biolib/pyppeteer/pyppeteer/page.py +0 -1728
- biolib/pyppeteer/pyppeteer/pipe_transport.py +0 -59
- biolib/pyppeteer/pyppeteer/target.py +0 -147
- biolib/pyppeteer/pyppeteer/task_queue.py +0 -24
- biolib/pyppeteer/pyppeteer/timeout_settings.py +0 -36
- biolib/pyppeteer/pyppeteer/tracing.py +0 -93
- biolib/pyppeteer/pyppeteer/us_keyboard_layout.py +0 -305
- biolib/pyppeteer/pyppeteer/util.py +0 -18
- biolib/pyppeteer/pyppeteer/websocket_transport.py +0 -47
- biolib/pyppeteer/pyppeteer/worker.py +0 -101
- biolib/pyppeteer/pyproject.toml +0 -97
- biolib/pyppeteer/spell.txt +0 -137
- biolib/pyppeteer/tox.ini +0 -72
- biolib/pyppeteer/utils/generate_protocol_types.py +0 -603
- biolib/start_cli.py +0 -7
- biolib/utils.py +0 -47
- biolib/validators/validate_app_version.py +0 -183
- biolib/validators/validate_argument.py +0 -134
- biolib/validators/validate_module.py +0 -323
- biolib/validators/validate_zip_file.py +0 -40
- biolib/validators/validator_utils.py +0 -103
- pybiolib-0.2.951.dist-info/LICENSE +0 -21
- pybiolib-0.2.951.dist-info/METADATA +0 -61
- pybiolib-0.2.951.dist-info/RECORD +0 -153
- pybiolib-0.2.951.dist-info/entry_points.txt +0 -3
- /LICENSE → /pybiolib-1.2.1890.dist-info/licenses/LICENSE +0 -0
biolib/pyppeteer/poetry.lock
DELETED
|
@@ -1,1699 +0,0 @@
|
|
|
1
|
-
[[package]]
|
|
2
|
-
category = "main"
|
|
3
|
-
description = "Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants"
|
|
4
|
-
name = "aenum"
|
|
5
|
-
optional = false
|
|
6
|
-
python-versions = "*"
|
|
7
|
-
version = "2.2.3"
|
|
8
|
-
|
|
9
|
-
[[package]]
|
|
10
|
-
category = "dev"
|
|
11
|
-
description = "Async http client/server framework (asyncio)"
|
|
12
|
-
name = "aiohttp"
|
|
13
|
-
optional = false
|
|
14
|
-
python-versions = ">=3.5.3"
|
|
15
|
-
version = "3.6.2"
|
|
16
|
-
|
|
17
|
-
[package.dependencies]
|
|
18
|
-
async-timeout = ">=3.0,<4.0"
|
|
19
|
-
attrs = ">=17.3.0"
|
|
20
|
-
chardet = ">=2.0,<4.0"
|
|
21
|
-
multidict = ">=4.5,<5.0"
|
|
22
|
-
yarl = ">=1.0,<2.0"
|
|
23
|
-
|
|
24
|
-
[package.dependencies.idna-ssl]
|
|
25
|
-
python = "<3.7"
|
|
26
|
-
version = ">=1.0"
|
|
27
|
-
|
|
28
|
-
[package.dependencies.typing-extensions]
|
|
29
|
-
python = "<3.7"
|
|
30
|
-
version = ">=3.6.5"
|
|
31
|
-
|
|
32
|
-
[package.extras]
|
|
33
|
-
speedups = ["aiodns", "brotlipy", "cchardet"]
|
|
34
|
-
|
|
35
|
-
[[package]]
|
|
36
|
-
category = "dev"
|
|
37
|
-
description = "A configurable sidebar-enabled Sphinx theme"
|
|
38
|
-
name = "alabaster"
|
|
39
|
-
optional = false
|
|
40
|
-
python-versions = "*"
|
|
41
|
-
version = "0.7.12"
|
|
42
|
-
|
|
43
|
-
[[package]]
|
|
44
|
-
category = "dev"
|
|
45
|
-
description = "apipkg: namespace control and lazy-import mechanism"
|
|
46
|
-
name = "apipkg"
|
|
47
|
-
optional = false
|
|
48
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
49
|
-
version = "1.5"
|
|
50
|
-
|
|
51
|
-
[[package]]
|
|
52
|
-
category = "main"
|
|
53
|
-
description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
|
|
54
|
-
name = "appdirs"
|
|
55
|
-
optional = false
|
|
56
|
-
python-versions = "*"
|
|
57
|
-
version = "1.4.4"
|
|
58
|
-
|
|
59
|
-
[[package]]
|
|
60
|
-
category = "dev"
|
|
61
|
-
description = "An abstract syntax tree for Python with inference support."
|
|
62
|
-
name = "astroid"
|
|
63
|
-
optional = false
|
|
64
|
-
python-versions = ">=3.5"
|
|
65
|
-
version = "2.4.1"
|
|
66
|
-
|
|
67
|
-
[package.dependencies]
|
|
68
|
-
lazy-object-proxy = ">=1.4.0,<1.5.0"
|
|
69
|
-
six = ">=1.12,<2.0"
|
|
70
|
-
wrapt = ">=1.11,<2.0"
|
|
71
|
-
|
|
72
|
-
[package.dependencies.typed-ast]
|
|
73
|
-
python = "<3.8"
|
|
74
|
-
version = ">=1.4.0,<1.5"
|
|
75
|
-
|
|
76
|
-
[[package]]
|
|
77
|
-
category = "dev"
|
|
78
|
-
description = "Timeout context manager for asyncio programs"
|
|
79
|
-
name = "async-timeout"
|
|
80
|
-
optional = false
|
|
81
|
-
python-versions = ">=3.5.3"
|
|
82
|
-
version = "3.0.1"
|
|
83
|
-
|
|
84
|
-
[[package]]
|
|
85
|
-
category = "dev"
|
|
86
|
-
description = "Atomic file writes."
|
|
87
|
-
marker = "sys_platform == \"win32\""
|
|
88
|
-
name = "atomicwrites"
|
|
89
|
-
optional = false
|
|
90
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
91
|
-
version = "1.4.0"
|
|
92
|
-
|
|
93
|
-
[[package]]
|
|
94
|
-
category = "dev"
|
|
95
|
-
description = "Classes Without Boilerplate"
|
|
96
|
-
name = "attrs"
|
|
97
|
-
optional = false
|
|
98
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
99
|
-
version = "19.3.0"
|
|
100
|
-
|
|
101
|
-
[package.extras]
|
|
102
|
-
azure-pipelines = ["coverage", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "zope.interface", "pytest-azurepipelines"]
|
|
103
|
-
dev = ["coverage", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "zope.interface", "sphinx", "pre-commit"]
|
|
104
|
-
docs = ["sphinx", "zope.interface"]
|
|
105
|
-
tests = ["coverage", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "zope.interface"]
|
|
106
|
-
|
|
107
|
-
[[package]]
|
|
108
|
-
category = "dev"
|
|
109
|
-
description = "Internationalization utilities"
|
|
110
|
-
name = "babel"
|
|
111
|
-
optional = false
|
|
112
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
113
|
-
version = "2.8.0"
|
|
114
|
-
|
|
115
|
-
[package.dependencies]
|
|
116
|
-
pytz = ">=2015.7"
|
|
117
|
-
|
|
118
|
-
[[package]]
|
|
119
|
-
category = "dev"
|
|
120
|
-
description = "An easy safelist-based HTML-sanitizing tool."
|
|
121
|
-
name = "bleach"
|
|
122
|
-
optional = false
|
|
123
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
|
124
|
-
version = "3.1.5"
|
|
125
|
-
|
|
126
|
-
[package.dependencies]
|
|
127
|
-
packaging = "*"
|
|
128
|
-
six = ">=1.9.0"
|
|
129
|
-
webencodings = "*"
|
|
130
|
-
|
|
131
|
-
[[package]]
|
|
132
|
-
category = "main"
|
|
133
|
-
description = "Python package for providing Mozilla's CA Bundle."
|
|
134
|
-
name = "certifi"
|
|
135
|
-
optional = false
|
|
136
|
-
python-versions = "*"
|
|
137
|
-
version = "2020.4.5.1"
|
|
138
|
-
|
|
139
|
-
[[package]]
|
|
140
|
-
category = "dev"
|
|
141
|
-
description = "Validate configuration and produce human readable error messages."
|
|
142
|
-
name = "cfgv"
|
|
143
|
-
optional = false
|
|
144
|
-
python-versions = ">=3.6.1"
|
|
145
|
-
version = "3.1.0"
|
|
146
|
-
|
|
147
|
-
[[package]]
|
|
148
|
-
category = "dev"
|
|
149
|
-
description = "Universal encoding detector for Python 2 and 3"
|
|
150
|
-
name = "chardet"
|
|
151
|
-
optional = false
|
|
152
|
-
python-versions = "*"
|
|
153
|
-
version = "3.0.4"
|
|
154
|
-
|
|
155
|
-
[[package]]
|
|
156
|
-
category = "dev"
|
|
157
|
-
description = "Extended pickling support for Python objects"
|
|
158
|
-
name = "cloudpickle"
|
|
159
|
-
optional = false
|
|
160
|
-
python-versions = ">=3.5"
|
|
161
|
-
version = "1.4.1"
|
|
162
|
-
|
|
163
|
-
[[package]]
|
|
164
|
-
category = "dev"
|
|
165
|
-
description = "Cross-platform colored terminal text."
|
|
166
|
-
marker = "sys_platform == \"win32\" or platform_system == \"Windows\""
|
|
167
|
-
name = "colorama"
|
|
168
|
-
optional = false
|
|
169
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
|
170
|
-
version = "0.4.3"
|
|
171
|
-
|
|
172
|
-
[[package]]
|
|
173
|
-
category = "dev"
|
|
174
|
-
description = "Code coverage measurement for Python"
|
|
175
|
-
name = "coverage"
|
|
176
|
-
optional = false
|
|
177
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
|
|
178
|
-
version = "5.1"
|
|
179
|
-
|
|
180
|
-
[package.extras]
|
|
181
|
-
toml = ["toml"]
|
|
182
|
-
|
|
183
|
-
[[package]]
|
|
184
|
-
category = "dev"
|
|
185
|
-
description = "Decorators for Humans"
|
|
186
|
-
name = "decorator"
|
|
187
|
-
optional = false
|
|
188
|
-
python-versions = ">=2.6, !=3.0.*, !=3.1.*"
|
|
189
|
-
version = "4.4.2"
|
|
190
|
-
|
|
191
|
-
[[package]]
|
|
192
|
-
category = "dev"
|
|
193
|
-
description = "Repackaging of Google's Diff Match and Patch libraries. Offers robust algorithms to perform the operations required for synchronizing plain text."
|
|
194
|
-
name = "diff-match-patch"
|
|
195
|
-
optional = false
|
|
196
|
-
python-versions = "*"
|
|
197
|
-
version = "20181111"
|
|
198
|
-
|
|
199
|
-
[[package]]
|
|
200
|
-
category = "dev"
|
|
201
|
-
description = "Distribution utilities"
|
|
202
|
-
name = "distlib"
|
|
203
|
-
optional = false
|
|
204
|
-
python-versions = "*"
|
|
205
|
-
version = "0.3.0"
|
|
206
|
-
|
|
207
|
-
[[package]]
|
|
208
|
-
category = "dev"
|
|
209
|
-
description = "Docutils -- Python Documentation Utilities"
|
|
210
|
-
name = "docutils"
|
|
211
|
-
optional = false
|
|
212
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
|
213
|
-
version = "0.16"
|
|
214
|
-
|
|
215
|
-
[[package]]
|
|
216
|
-
category = "dev"
|
|
217
|
-
description = "doit - Automation Tool"
|
|
218
|
-
name = "doit"
|
|
219
|
-
optional = false
|
|
220
|
-
python-versions = ">=3.4"
|
|
221
|
-
version = "0.32.0"
|
|
222
|
-
|
|
223
|
-
[package.dependencies]
|
|
224
|
-
cloudpickle = "*"
|
|
225
|
-
macfsevents = "*"
|
|
226
|
-
pyinotify = "*"
|
|
227
|
-
|
|
228
|
-
[[package]]
|
|
229
|
-
category = "dev"
|
|
230
|
-
description = "execnet: rapid multi-Python deployment"
|
|
231
|
-
name = "execnet"
|
|
232
|
-
optional = false
|
|
233
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
234
|
-
version = "1.7.1"
|
|
235
|
-
|
|
236
|
-
[package.dependencies]
|
|
237
|
-
apipkg = ">=1.4"
|
|
238
|
-
|
|
239
|
-
[package.extras]
|
|
240
|
-
testing = ["pre-commit"]
|
|
241
|
-
|
|
242
|
-
[[package]]
|
|
243
|
-
category = "dev"
|
|
244
|
-
description = "A platform independent file lock."
|
|
245
|
-
name = "filelock"
|
|
246
|
-
optional = false
|
|
247
|
-
python-versions = "*"
|
|
248
|
-
version = "3.0.12"
|
|
249
|
-
|
|
250
|
-
[[package]]
|
|
251
|
-
category = "dev"
|
|
252
|
-
description = "the modular source code checker: pep8 pyflakes and co"
|
|
253
|
-
name = "flake8"
|
|
254
|
-
optional = false
|
|
255
|
-
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7"
|
|
256
|
-
version = "3.8.2"
|
|
257
|
-
|
|
258
|
-
[package.dependencies]
|
|
259
|
-
mccabe = ">=0.6.0,<0.7.0"
|
|
260
|
-
pycodestyle = ">=2.6.0a1,<2.7.0"
|
|
261
|
-
pyflakes = ">=2.2.0,<2.3.0"
|
|
262
|
-
|
|
263
|
-
[package.dependencies.importlib-metadata]
|
|
264
|
-
python = "<3.8"
|
|
265
|
-
version = "*"
|
|
266
|
-
|
|
267
|
-
[[package]]
|
|
268
|
-
category = "dev"
|
|
269
|
-
description = "File identification library for Python"
|
|
270
|
-
name = "identify"
|
|
271
|
-
optional = false
|
|
272
|
-
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7"
|
|
273
|
-
version = "1.4.17"
|
|
274
|
-
|
|
275
|
-
[package.extras]
|
|
276
|
-
license = ["editdistance"]
|
|
277
|
-
|
|
278
|
-
[[package]]
|
|
279
|
-
category = "dev"
|
|
280
|
-
description = "Internationalized Domain Names in Applications (IDNA)"
|
|
281
|
-
name = "idna"
|
|
282
|
-
optional = false
|
|
283
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
284
|
-
version = "2.9"
|
|
285
|
-
|
|
286
|
-
[[package]]
|
|
287
|
-
category = "dev"
|
|
288
|
-
description = "Patch ssl.match_hostname for Unicode(idna) domains support"
|
|
289
|
-
marker = "python_version < \"3.7\""
|
|
290
|
-
name = "idna-ssl"
|
|
291
|
-
optional = false
|
|
292
|
-
python-versions = "*"
|
|
293
|
-
version = "1.1.0"
|
|
294
|
-
|
|
295
|
-
[package.dependencies]
|
|
296
|
-
idna = ">=2.0"
|
|
297
|
-
|
|
298
|
-
[[package]]
|
|
299
|
-
category = "dev"
|
|
300
|
-
description = "Getting image size from png/jpeg/jpeg2000/gif file"
|
|
301
|
-
name = "imagesize"
|
|
302
|
-
optional = false
|
|
303
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
304
|
-
version = "1.2.0"
|
|
305
|
-
|
|
306
|
-
[[package]]
|
|
307
|
-
category = "dev"
|
|
308
|
-
description = "Read metadata from Python packages"
|
|
309
|
-
marker = "python_version < \"3.8\""
|
|
310
|
-
name = "importlib-metadata"
|
|
311
|
-
optional = false
|
|
312
|
-
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
|
|
313
|
-
version = "1.6.0"
|
|
314
|
-
|
|
315
|
-
[package.dependencies]
|
|
316
|
-
zipp = ">=0.5"
|
|
317
|
-
|
|
318
|
-
[package.extras]
|
|
319
|
-
docs = ["sphinx", "rst.linker"]
|
|
320
|
-
testing = ["packaging", "importlib-resources"]
|
|
321
|
-
|
|
322
|
-
[[package]]
|
|
323
|
-
category = "dev"
|
|
324
|
-
description = "Read resources from Python packages"
|
|
325
|
-
marker = "python_version < \"3.7\""
|
|
326
|
-
name = "importlib-resources"
|
|
327
|
-
optional = false
|
|
328
|
-
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
|
|
329
|
-
version = "1.5.0"
|
|
330
|
-
|
|
331
|
-
[package.dependencies]
|
|
332
|
-
[package.dependencies.importlib-metadata]
|
|
333
|
-
python = "<3.8"
|
|
334
|
-
version = "*"
|
|
335
|
-
|
|
336
|
-
[package.dependencies.zipp]
|
|
337
|
-
python = "<3.8"
|
|
338
|
-
version = ">=0.4"
|
|
339
|
-
|
|
340
|
-
[package.extras]
|
|
341
|
-
docs = ["sphinx", "rst.linker", "jaraco.packaging"]
|
|
342
|
-
|
|
343
|
-
[[package]]
|
|
344
|
-
category = "dev"
|
|
345
|
-
description = "A Python utility / library to sort Python imports."
|
|
346
|
-
name = "isort"
|
|
347
|
-
optional = false
|
|
348
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
349
|
-
version = "4.3.21"
|
|
350
|
-
|
|
351
|
-
[package.extras]
|
|
352
|
-
pipfile = ["pipreqs", "requirementslib"]
|
|
353
|
-
pyproject = ["toml"]
|
|
354
|
-
requirements = ["pipreqs", "pip-api"]
|
|
355
|
-
xdg_home = ["appdirs (>=1.4.0)"]
|
|
356
|
-
|
|
357
|
-
[[package]]
|
|
358
|
-
category = "dev"
|
|
359
|
-
description = "A very fast and expressive template engine."
|
|
360
|
-
name = "jinja2"
|
|
361
|
-
optional = false
|
|
362
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
|
363
|
-
version = "2.11.2"
|
|
364
|
-
|
|
365
|
-
[package.dependencies]
|
|
366
|
-
MarkupSafe = ">=0.23"
|
|
367
|
-
|
|
368
|
-
[package.extras]
|
|
369
|
-
i18n = ["Babel (>=0.8)"]
|
|
370
|
-
|
|
371
|
-
[[package]]
|
|
372
|
-
category = "dev"
|
|
373
|
-
description = "A fast and thorough lazy object proxy."
|
|
374
|
-
name = "lazy-object-proxy"
|
|
375
|
-
optional = false
|
|
376
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
377
|
-
version = "1.4.3"
|
|
378
|
-
|
|
379
|
-
[[package]]
|
|
380
|
-
category = "dev"
|
|
381
|
-
description = "Python LiveReload is an awesome tool for web developers"
|
|
382
|
-
name = "livereload"
|
|
383
|
-
optional = false
|
|
384
|
-
python-versions = "*"
|
|
385
|
-
version = "2.6.1"
|
|
386
|
-
|
|
387
|
-
[package.dependencies]
|
|
388
|
-
six = "*"
|
|
389
|
-
tornado = "*"
|
|
390
|
-
|
|
391
|
-
[[package]]
|
|
392
|
-
category = "dev"
|
|
393
|
-
description = "Markdown and reStructuredText in a single file."
|
|
394
|
-
name = "m2r"
|
|
395
|
-
optional = false
|
|
396
|
-
python-versions = "*"
|
|
397
|
-
version = "0.2.1"
|
|
398
|
-
|
|
399
|
-
[package.dependencies]
|
|
400
|
-
docutils = "*"
|
|
401
|
-
mistune = "*"
|
|
402
|
-
|
|
403
|
-
[[package]]
|
|
404
|
-
category = "dev"
|
|
405
|
-
description = "Thread-based interface to file system observation primitives."
|
|
406
|
-
marker = "sys_platform == \"darwin\""
|
|
407
|
-
name = "macfsevents"
|
|
408
|
-
optional = false
|
|
409
|
-
python-versions = "*"
|
|
410
|
-
version = "0.8.1"
|
|
411
|
-
|
|
412
|
-
[[package]]
|
|
413
|
-
category = "dev"
|
|
414
|
-
description = "Safely add untrusted strings to HTML/XML markup."
|
|
415
|
-
name = "markupsafe"
|
|
416
|
-
optional = false
|
|
417
|
-
python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*"
|
|
418
|
-
version = "1.1.1"
|
|
419
|
-
|
|
420
|
-
[[package]]
|
|
421
|
-
category = "dev"
|
|
422
|
-
description = "McCabe checker, plugin for flake8"
|
|
423
|
-
name = "mccabe"
|
|
424
|
-
optional = false
|
|
425
|
-
python-versions = "*"
|
|
426
|
-
version = "0.6.1"
|
|
427
|
-
|
|
428
|
-
[[package]]
|
|
429
|
-
category = "dev"
|
|
430
|
-
description = "The fastest markdown parser in pure Python"
|
|
431
|
-
name = "mistune"
|
|
432
|
-
optional = false
|
|
433
|
-
python-versions = "*"
|
|
434
|
-
version = "0.8.4"
|
|
435
|
-
|
|
436
|
-
[[package]]
|
|
437
|
-
category = "dev"
|
|
438
|
-
description = "More routines for operating on iterables, beyond itertools"
|
|
439
|
-
name = "more-itertools"
|
|
440
|
-
optional = false
|
|
441
|
-
python-versions = ">=3.5"
|
|
442
|
-
version = "8.3.0"
|
|
443
|
-
|
|
444
|
-
[[package]]
|
|
445
|
-
category = "dev"
|
|
446
|
-
description = "multidict implementation"
|
|
447
|
-
name = "multidict"
|
|
448
|
-
optional = false
|
|
449
|
-
python-versions = ">=3.5"
|
|
450
|
-
version = "4.7.6"
|
|
451
|
-
|
|
452
|
-
[[package]]
|
|
453
|
-
category = "dev"
|
|
454
|
-
description = "Optional static typing for Python"
|
|
455
|
-
name = "mypy"
|
|
456
|
-
optional = false
|
|
457
|
-
python-versions = ">=3.5"
|
|
458
|
-
version = "0.770"
|
|
459
|
-
|
|
460
|
-
[package.dependencies]
|
|
461
|
-
mypy-extensions = ">=0.4.3,<0.5.0"
|
|
462
|
-
typed-ast = ">=1.4.0,<1.5.0"
|
|
463
|
-
typing-extensions = ">=3.7.4"
|
|
464
|
-
|
|
465
|
-
[package.extras]
|
|
466
|
-
dmypy = ["psutil (>=4.0)"]
|
|
467
|
-
|
|
468
|
-
[[package]]
|
|
469
|
-
category = "main"
|
|
470
|
-
description = "Experimental type system extensions for programs checked with the mypy typechecker."
|
|
471
|
-
name = "mypy-extensions"
|
|
472
|
-
optional = false
|
|
473
|
-
python-versions = "*"
|
|
474
|
-
version = "0.4.3"
|
|
475
|
-
|
|
476
|
-
[[package]]
|
|
477
|
-
category = "dev"
|
|
478
|
-
description = "Python package for creating and manipulating graphs and networks"
|
|
479
|
-
name = "networkx"
|
|
480
|
-
optional = false
|
|
481
|
-
python-versions = ">=3.5"
|
|
482
|
-
version = "2.4"
|
|
483
|
-
|
|
484
|
-
[package.dependencies]
|
|
485
|
-
decorator = ">=4.3.0"
|
|
486
|
-
|
|
487
|
-
[package.extras]
|
|
488
|
-
all = ["numpy", "scipy", "pandas", "matplotlib", "pygraphviz", "pydot", "pyyaml", "gdal", "lxml", "pytest"]
|
|
489
|
-
gdal = ["gdal"]
|
|
490
|
-
lxml = ["lxml"]
|
|
491
|
-
matplotlib = ["matplotlib"]
|
|
492
|
-
numpy = ["numpy"]
|
|
493
|
-
pandas = ["pandas"]
|
|
494
|
-
pydot = ["pydot"]
|
|
495
|
-
pygraphviz = ["pygraphviz"]
|
|
496
|
-
pytest = ["pytest"]
|
|
497
|
-
pyyaml = ["pyyaml"]
|
|
498
|
-
scipy = ["scipy"]
|
|
499
|
-
|
|
500
|
-
[[package]]
|
|
501
|
-
category = "dev"
|
|
502
|
-
description = "Node.js virtual environment builder"
|
|
503
|
-
name = "nodeenv"
|
|
504
|
-
optional = false
|
|
505
|
-
python-versions = "*"
|
|
506
|
-
version = "1.3.5"
|
|
507
|
-
|
|
508
|
-
[[package]]
|
|
509
|
-
category = "main"
|
|
510
|
-
description = "A set that remembers its order, and allows looking up its items by their index in that order."
|
|
511
|
-
name = "ordered-set"
|
|
512
|
-
optional = false
|
|
513
|
-
python-versions = ">=3.5"
|
|
514
|
-
version = "4.0.1"
|
|
515
|
-
|
|
516
|
-
[[package]]
|
|
517
|
-
category = "dev"
|
|
518
|
-
description = "Core utilities for Python packages"
|
|
519
|
-
name = "packaging"
|
|
520
|
-
optional = false
|
|
521
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
522
|
-
version = "20.4"
|
|
523
|
-
|
|
524
|
-
[package.dependencies]
|
|
525
|
-
pyparsing = ">=2.0.2"
|
|
526
|
-
six = "*"
|
|
527
|
-
|
|
528
|
-
[[package]]
|
|
529
|
-
category = "main"
|
|
530
|
-
description = "Python Imaging Library (Fork)"
|
|
531
|
-
name = "pillow"
|
|
532
|
-
optional = false
|
|
533
|
-
python-versions = ">=3.5"
|
|
534
|
-
version = "7.1.2"
|
|
535
|
-
|
|
536
|
-
[[package]]
|
|
537
|
-
category = "dev"
|
|
538
|
-
description = "A pixel-level image comparison library."
|
|
539
|
-
name = "pixelmatch"
|
|
540
|
-
optional = false
|
|
541
|
-
python-versions = ">=3.6,<4.0"
|
|
542
|
-
version = "0.2.1"
|
|
543
|
-
|
|
544
|
-
[[package]]
|
|
545
|
-
category = "dev"
|
|
546
|
-
description = "plugin and hook calling mechanisms for python"
|
|
547
|
-
name = "pluggy"
|
|
548
|
-
optional = false
|
|
549
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
550
|
-
version = "0.13.1"
|
|
551
|
-
|
|
552
|
-
[package.dependencies]
|
|
553
|
-
[package.dependencies.importlib-metadata]
|
|
554
|
-
python = "<3.8"
|
|
555
|
-
version = ">=0.12"
|
|
556
|
-
|
|
557
|
-
[package.extras]
|
|
558
|
-
dev = ["pre-commit", "tox"]
|
|
559
|
-
|
|
560
|
-
[[package]]
|
|
561
|
-
category = "dev"
|
|
562
|
-
description = "A framework for managing and maintaining multi-language pre-commit hooks."
|
|
563
|
-
name = "pre-commit"
|
|
564
|
-
optional = false
|
|
565
|
-
python-versions = ">=3.6.1"
|
|
566
|
-
version = "2.4.0"
|
|
567
|
-
|
|
568
|
-
[package.dependencies]
|
|
569
|
-
cfgv = ">=2.0.0"
|
|
570
|
-
identify = ">=1.0.0"
|
|
571
|
-
nodeenv = ">=0.11.1"
|
|
572
|
-
pyyaml = ">=5.1"
|
|
573
|
-
toml = "*"
|
|
574
|
-
virtualenv = ">=20.0.8"
|
|
575
|
-
|
|
576
|
-
[package.dependencies.importlib-metadata]
|
|
577
|
-
python = "<3.8"
|
|
578
|
-
version = "*"
|
|
579
|
-
|
|
580
|
-
[package.dependencies.importlib-resources]
|
|
581
|
-
python = "<3.7"
|
|
582
|
-
version = "*"
|
|
583
|
-
|
|
584
|
-
[[package]]
|
|
585
|
-
category = "dev"
|
|
586
|
-
description = "library with cross-python path, ini-parsing, io, code, log facilities"
|
|
587
|
-
name = "py"
|
|
588
|
-
optional = false
|
|
589
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
590
|
-
version = "1.8.1"
|
|
591
|
-
|
|
592
|
-
[[package]]
|
|
593
|
-
category = "dev"
|
|
594
|
-
description = "Python style guide checker"
|
|
595
|
-
name = "pycodestyle"
|
|
596
|
-
optional = false
|
|
597
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
598
|
-
version = "2.6.0"
|
|
599
|
-
|
|
600
|
-
[[package]]
|
|
601
|
-
category = "dev"
|
|
602
|
-
description = "Python docstring style checker"
|
|
603
|
-
name = "pydocstyle"
|
|
604
|
-
optional = false
|
|
605
|
-
python-versions = ">=3.5"
|
|
606
|
-
version = "5.0.2"
|
|
607
|
-
|
|
608
|
-
[package.dependencies]
|
|
609
|
-
snowballstemmer = "*"
|
|
610
|
-
|
|
611
|
-
[[package]]
|
|
612
|
-
category = "main"
|
|
613
|
-
description = "A port of node.js's EventEmitter to python."
|
|
614
|
-
name = "pyee"
|
|
615
|
-
optional = false
|
|
616
|
-
python-versions = "*"
|
|
617
|
-
version = "7.0.2"
|
|
618
|
-
|
|
619
|
-
[[package]]
|
|
620
|
-
category = "dev"
|
|
621
|
-
description = "passive checker of Python programs"
|
|
622
|
-
name = "pyflakes"
|
|
623
|
-
optional = false
|
|
624
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
625
|
-
version = "2.2.0"
|
|
626
|
-
|
|
627
|
-
[[package]]
|
|
628
|
-
category = "dev"
|
|
629
|
-
description = "Pygments is a syntax highlighting package written in Python."
|
|
630
|
-
name = "pygments"
|
|
631
|
-
optional = false
|
|
632
|
-
python-versions = ">=3.5"
|
|
633
|
-
version = "2.6.1"
|
|
634
|
-
|
|
635
|
-
[[package]]
|
|
636
|
-
category = "dev"
|
|
637
|
-
description = "Linux filesystem events monitoring"
|
|
638
|
-
marker = "sys_platform == \"linux\""
|
|
639
|
-
name = "pyinotify"
|
|
640
|
-
optional = false
|
|
641
|
-
python-versions = "*"
|
|
642
|
-
version = "0.9.6"
|
|
643
|
-
|
|
644
|
-
[[package]]
|
|
645
|
-
category = "dev"
|
|
646
|
-
description = "python code static checker"
|
|
647
|
-
name = "pylint"
|
|
648
|
-
optional = false
|
|
649
|
-
python-versions = ">=3.5.*"
|
|
650
|
-
version = "2.5.2"
|
|
651
|
-
|
|
652
|
-
[package.dependencies]
|
|
653
|
-
astroid = ">=2.4.0,<=2.5"
|
|
654
|
-
colorama = "*"
|
|
655
|
-
isort = ">=4.2.5,<5"
|
|
656
|
-
mccabe = ">=0.6,<0.7"
|
|
657
|
-
toml = ">=0.7.1"
|
|
658
|
-
|
|
659
|
-
[[package]]
|
|
660
|
-
category = "dev"
|
|
661
|
-
description = "Python parsing module"
|
|
662
|
-
name = "pyparsing"
|
|
663
|
-
optional = false
|
|
664
|
-
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
|
|
665
|
-
version = "2.4.7"
|
|
666
|
-
|
|
667
|
-
[[package]]
|
|
668
|
-
category = "dev"
|
|
669
|
-
description = "pytest: simple powerful testing with Python"
|
|
670
|
-
name = "pytest"
|
|
671
|
-
optional = false
|
|
672
|
-
python-versions = ">=3.5"
|
|
673
|
-
version = "5.4.2"
|
|
674
|
-
|
|
675
|
-
[package.dependencies]
|
|
676
|
-
atomicwrites = ">=1.0"
|
|
677
|
-
attrs = ">=17.4.0"
|
|
678
|
-
colorama = "*"
|
|
679
|
-
more-itertools = ">=4.0.0"
|
|
680
|
-
packaging = "*"
|
|
681
|
-
pluggy = ">=0.12,<1.0"
|
|
682
|
-
py = ">=1.5.0"
|
|
683
|
-
wcwidth = "*"
|
|
684
|
-
|
|
685
|
-
[package.dependencies.importlib-metadata]
|
|
686
|
-
python = "<3.8"
|
|
687
|
-
version = ">=0.12"
|
|
688
|
-
|
|
689
|
-
[package.extras]
|
|
690
|
-
checkqa-mypy = ["mypy (v0.761)"]
|
|
691
|
-
testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"]
|
|
692
|
-
|
|
693
|
-
[[package]]
|
|
694
|
-
category = "dev"
|
|
695
|
-
description = "Pytest plugin for measuring coverage."
|
|
696
|
-
name = "pytest-cov"
|
|
697
|
-
optional = false
|
|
698
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
|
699
|
-
version = "2.9.0"
|
|
700
|
-
|
|
701
|
-
[package.dependencies]
|
|
702
|
-
coverage = ">=4.4"
|
|
703
|
-
pytest = ">=3.6"
|
|
704
|
-
|
|
705
|
-
[package.extras]
|
|
706
|
-
testing = ["fields", "hunter", "process-tests (2.0.2)", "six", "pytest-xdist", "virtualenv"]
|
|
707
|
-
|
|
708
|
-
[[package]]
|
|
709
|
-
category = "dev"
|
|
710
|
-
description = "run tests in isolated forked subprocesses"
|
|
711
|
-
name = "pytest-forked"
|
|
712
|
-
optional = false
|
|
713
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
714
|
-
version = "1.1.3"
|
|
715
|
-
|
|
716
|
-
[package.dependencies]
|
|
717
|
-
pytest = ">=3.1.0"
|
|
718
|
-
|
|
719
|
-
[[package]]
|
|
720
|
-
category = "dev"
|
|
721
|
-
description = "py.test plugin to abort hanging tests"
|
|
722
|
-
name = "pytest-timeout"
|
|
723
|
-
optional = false
|
|
724
|
-
python-versions = "*"
|
|
725
|
-
version = "1.3.4"
|
|
726
|
-
|
|
727
|
-
[package.dependencies]
|
|
728
|
-
pytest = ">=3.6.0"
|
|
729
|
-
|
|
730
|
-
[[package]]
|
|
731
|
-
category = "dev"
|
|
732
|
-
description = "pytest xdist plugin for distributed testing and loop-on-failing modes"
|
|
733
|
-
name = "pytest-xdist"
|
|
734
|
-
optional = false
|
|
735
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
|
736
|
-
version = "1.32.0"
|
|
737
|
-
|
|
738
|
-
[package.dependencies]
|
|
739
|
-
execnet = ">=1.1"
|
|
740
|
-
pytest = ">=4.4.0"
|
|
741
|
-
pytest-forked = "*"
|
|
742
|
-
six = "*"
|
|
743
|
-
|
|
744
|
-
[package.extras]
|
|
745
|
-
testing = ["filelock"]
|
|
746
|
-
|
|
747
|
-
[[package]]
|
|
748
|
-
category = "dev"
|
|
749
|
-
description = "World timezone definitions, modern and historical"
|
|
750
|
-
name = "pytz"
|
|
751
|
-
optional = false
|
|
752
|
-
python-versions = "*"
|
|
753
|
-
version = "2020.1"
|
|
754
|
-
|
|
755
|
-
[[package]]
|
|
756
|
-
category = "dev"
|
|
757
|
-
description = "YAML parser and emitter for Python"
|
|
758
|
-
name = "pyyaml"
|
|
759
|
-
optional = false
|
|
760
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
|
761
|
-
version = "5.3.1"
|
|
762
|
-
|
|
763
|
-
[[package]]
|
|
764
|
-
category = "dev"
|
|
765
|
-
description = "readme_renderer is a library for rendering \"readme\" descriptions for Warehouse"
|
|
766
|
-
name = "readme-renderer"
|
|
767
|
-
optional = false
|
|
768
|
-
python-versions = "*"
|
|
769
|
-
version = "24.0"
|
|
770
|
-
|
|
771
|
-
[package.dependencies]
|
|
772
|
-
Pygments = "*"
|
|
773
|
-
bleach = ">=2.1.0"
|
|
774
|
-
docutils = ">=0.13.1"
|
|
775
|
-
six = "*"
|
|
776
|
-
|
|
777
|
-
[package.extras]
|
|
778
|
-
md = ["cmarkgfm (>=0.2.0)"]
|
|
779
|
-
|
|
780
|
-
[[package]]
|
|
781
|
-
category = "dev"
|
|
782
|
-
description = "Python HTTP for Humans."
|
|
783
|
-
name = "requests"
|
|
784
|
-
optional = false
|
|
785
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
|
786
|
-
version = "2.23.0"
|
|
787
|
-
|
|
788
|
-
[package.dependencies]
|
|
789
|
-
certifi = ">=2017.4.17"
|
|
790
|
-
chardet = ">=3.0.2,<4"
|
|
791
|
-
idna = ">=2.5,<3"
|
|
792
|
-
urllib3 = ">=1.21.1,<1.25.0 || >1.25.0,<1.25.1 || >1.25.1,<1.26"
|
|
793
|
-
|
|
794
|
-
[package.extras]
|
|
795
|
-
security = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)"]
|
|
796
|
-
socks = ["PySocks (>=1.5.6,<1.5.7 || >1.5.7)", "win-inet-pton"]
|
|
797
|
-
|
|
798
|
-
[[package]]
|
|
799
|
-
category = "dev"
|
|
800
|
-
description = "Python 2 and 3 compatibility utilities"
|
|
801
|
-
name = "six"
|
|
802
|
-
optional = false
|
|
803
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
|
|
804
|
-
version = "1.15.0"
|
|
805
|
-
|
|
806
|
-
[[package]]
|
|
807
|
-
category = "dev"
|
|
808
|
-
description = "This package provides 26 stemmers for 25 languages generated from Snowball algorithms."
|
|
809
|
-
name = "snowballstemmer"
|
|
810
|
-
optional = false
|
|
811
|
-
python-versions = "*"
|
|
812
|
-
version = "2.0.0"
|
|
813
|
-
|
|
814
|
-
[[package]]
|
|
815
|
-
category = "dev"
|
|
816
|
-
description = "Python documentation generator"
|
|
817
|
-
name = "sphinx"
|
|
818
|
-
optional = false
|
|
819
|
-
python-versions = ">=3.5"
|
|
820
|
-
version = "2.4.4"
|
|
821
|
-
|
|
822
|
-
[package.dependencies]
|
|
823
|
-
Jinja2 = ">=2.3"
|
|
824
|
-
Pygments = ">=2.0"
|
|
825
|
-
alabaster = ">=0.7,<0.8"
|
|
826
|
-
babel = ">=1.3,<2.0 || >2.0"
|
|
827
|
-
colorama = ">=0.3.5"
|
|
828
|
-
docutils = ">=0.12"
|
|
829
|
-
imagesize = "*"
|
|
830
|
-
packaging = "*"
|
|
831
|
-
requests = ">=2.5.0"
|
|
832
|
-
setuptools = "*"
|
|
833
|
-
snowballstemmer = ">=1.1"
|
|
834
|
-
sphinxcontrib-applehelp = "*"
|
|
835
|
-
sphinxcontrib-devhelp = "*"
|
|
836
|
-
sphinxcontrib-htmlhelp = "*"
|
|
837
|
-
sphinxcontrib-jsmath = "*"
|
|
838
|
-
sphinxcontrib-qthelp = "*"
|
|
839
|
-
sphinxcontrib-serializinghtml = "*"
|
|
840
|
-
|
|
841
|
-
[package.extras]
|
|
842
|
-
docs = ["sphinxcontrib-websupport"]
|
|
843
|
-
test = ["pytest (<5.3.3)", "pytest-cov", "html5lib", "flake8 (>=3.5.0)", "flake8-import-order", "mypy (>=0.761)", "docutils-stubs"]
|
|
844
|
-
|
|
845
|
-
[[package]]
|
|
846
|
-
category = "dev"
|
|
847
|
-
description = "sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books"
|
|
848
|
-
name = "sphinxcontrib-applehelp"
|
|
849
|
-
optional = false
|
|
850
|
-
python-versions = ">=3.5"
|
|
851
|
-
version = "1.0.2"
|
|
852
|
-
|
|
853
|
-
[package.extras]
|
|
854
|
-
lint = ["flake8", "mypy", "docutils-stubs"]
|
|
855
|
-
test = ["pytest"]
|
|
856
|
-
|
|
857
|
-
[[package]]
|
|
858
|
-
category = "dev"
|
|
859
|
-
description = "sphinx extension to support coroutines in markup"
|
|
860
|
-
name = "sphinxcontrib-asyncio"
|
|
861
|
-
optional = false
|
|
862
|
-
python-versions = "*"
|
|
863
|
-
version = "0.2.0"
|
|
864
|
-
|
|
865
|
-
[package.dependencies]
|
|
866
|
-
sphinx = "*"
|
|
867
|
-
|
|
868
|
-
[[package]]
|
|
869
|
-
category = "dev"
|
|
870
|
-
description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document."
|
|
871
|
-
name = "sphinxcontrib-devhelp"
|
|
872
|
-
optional = false
|
|
873
|
-
python-versions = ">=3.5"
|
|
874
|
-
version = "1.0.2"
|
|
875
|
-
|
|
876
|
-
[package.extras]
|
|
877
|
-
lint = ["flake8", "mypy", "docutils-stubs"]
|
|
878
|
-
test = ["pytest"]
|
|
879
|
-
|
|
880
|
-
[[package]]
|
|
881
|
-
category = "dev"
|
|
882
|
-
description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files"
|
|
883
|
-
name = "sphinxcontrib-htmlhelp"
|
|
884
|
-
optional = false
|
|
885
|
-
python-versions = ">=3.5"
|
|
886
|
-
version = "1.0.3"
|
|
887
|
-
|
|
888
|
-
[package.extras]
|
|
889
|
-
lint = ["flake8", "mypy", "docutils-stubs"]
|
|
890
|
-
test = ["pytest", "html5lib"]
|
|
891
|
-
|
|
892
|
-
[[package]]
|
|
893
|
-
category = "dev"
|
|
894
|
-
description = "A sphinx extension which renders display math in HTML via JavaScript"
|
|
895
|
-
name = "sphinxcontrib-jsmath"
|
|
896
|
-
optional = false
|
|
897
|
-
python-versions = ">=3.5"
|
|
898
|
-
version = "1.0.1"
|
|
899
|
-
|
|
900
|
-
[package.extras]
|
|
901
|
-
test = ["pytest", "flake8", "mypy"]
|
|
902
|
-
|
|
903
|
-
[[package]]
|
|
904
|
-
category = "dev"
|
|
905
|
-
description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document."
|
|
906
|
-
name = "sphinxcontrib-qthelp"
|
|
907
|
-
optional = false
|
|
908
|
-
python-versions = ">=3.5"
|
|
909
|
-
version = "1.0.3"
|
|
910
|
-
|
|
911
|
-
[package.extras]
|
|
912
|
-
lint = ["flake8", "mypy", "docutils-stubs"]
|
|
913
|
-
test = ["pytest"]
|
|
914
|
-
|
|
915
|
-
[[package]]
|
|
916
|
-
category = "dev"
|
|
917
|
-
description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)."
|
|
918
|
-
name = "sphinxcontrib-serializinghtml"
|
|
919
|
-
optional = false
|
|
920
|
-
python-versions = ">=3.5"
|
|
921
|
-
version = "1.1.4"
|
|
922
|
-
|
|
923
|
-
[package.extras]
|
|
924
|
-
lint = ["flake8", "mypy", "docutils-stubs"]
|
|
925
|
-
test = ["pytest"]
|
|
926
|
-
|
|
927
|
-
[[package]]
|
|
928
|
-
category = "dev"
|
|
929
|
-
description = "Async to sync converter"
|
|
930
|
-
name = "syncer"
|
|
931
|
-
optional = false
|
|
932
|
-
python-versions = "*"
|
|
933
|
-
version = "1.3.0"
|
|
934
|
-
|
|
935
|
-
[[package]]
|
|
936
|
-
category = "dev"
|
|
937
|
-
description = "Python Library for Tom's Obvious, Minimal Language"
|
|
938
|
-
name = "toml"
|
|
939
|
-
optional = false
|
|
940
|
-
python-versions = "*"
|
|
941
|
-
version = "0.10.1"
|
|
942
|
-
|
|
943
|
-
[[package]]
|
|
944
|
-
category = "dev"
|
|
945
|
-
description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed."
|
|
946
|
-
name = "tornado"
|
|
947
|
-
optional = false
|
|
948
|
-
python-versions = ">= 3.5"
|
|
949
|
-
version = "6.0.4"
|
|
950
|
-
|
|
951
|
-
[[package]]
|
|
952
|
-
category = "dev"
|
|
953
|
-
description = "tox is a generic virtualenv management and test command line tool"
|
|
954
|
-
name = "tox"
|
|
955
|
-
optional = false
|
|
956
|
-
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
|
|
957
|
-
version = "3.15.1"
|
|
958
|
-
|
|
959
|
-
[package.dependencies]
|
|
960
|
-
colorama = ">=0.4.1"
|
|
961
|
-
filelock = ">=3.0.0"
|
|
962
|
-
packaging = ">=14"
|
|
963
|
-
pluggy = ">=0.12.0"
|
|
964
|
-
py = ">=1.4.17"
|
|
965
|
-
six = ">=1.14.0"
|
|
966
|
-
toml = ">=0.9.4"
|
|
967
|
-
virtualenv = ">=16.0.0,<20.0.0 || >20.0.0,<20.0.1 || >20.0.1,<20.0.2 || >20.0.2,<20.0.3 || >20.0.3,<20.0.4 || >20.0.4,<20.0.5 || >20.0.5,<20.0.6 || >20.0.6,<20.0.7 || >20.0.7"
|
|
968
|
-
|
|
969
|
-
[package.dependencies.importlib-metadata]
|
|
970
|
-
python = "<3.8"
|
|
971
|
-
version = ">=0.12,<2"
|
|
972
|
-
|
|
973
|
-
[package.extras]
|
|
974
|
-
docs = ["sphinx (>=2.0.0)", "towncrier (>=18.5.0)", "pygments-github-lexers (>=0.0.5)", "sphinxcontrib-autoprogram (>=0.1.5)"]
|
|
975
|
-
testing = ["freezegun (>=0.3.11)", "pathlib2 (>=2.3.3)", "pytest (>=4.0.0)", "pytest-cov (>=2.5.1)", "pytest-mock (>=1.10.0)", "pytest-xdist (>=1.22.2)", "pytest-randomly (>=1.0.0)", "flaky (>=3.4.0)", "psutil (>=5.6.1)"]
|
|
976
|
-
|
|
977
|
-
[[package]]
|
|
978
|
-
category = "main"
|
|
979
|
-
description = "Fast, Extensible Progress Meter"
|
|
980
|
-
name = "tqdm"
|
|
981
|
-
optional = false
|
|
982
|
-
python-versions = ">=2.6, !=3.0.*, !=3.1.*"
|
|
983
|
-
version = "4.46.0"
|
|
984
|
-
|
|
985
|
-
[package.extras]
|
|
986
|
-
dev = ["py-make (>=0.1.0)", "twine", "argopt", "pydoc-markdown"]
|
|
987
|
-
|
|
988
|
-
[[package]]
|
|
989
|
-
category = "dev"
|
|
990
|
-
description = "a fork of Python 2 and 3 ast modules with type comment support"
|
|
991
|
-
name = "typed-ast"
|
|
992
|
-
optional = false
|
|
993
|
-
python-versions = "*"
|
|
994
|
-
version = "1.4.1"
|
|
995
|
-
|
|
996
|
-
[[package]]
|
|
997
|
-
category = "main"
|
|
998
|
-
description = "Backported and Experimental Type Hints for Python 3.5+"
|
|
999
|
-
name = "typing-extensions"
|
|
1000
|
-
optional = false
|
|
1001
|
-
python-versions = "*"
|
|
1002
|
-
version = "3.7.4.2"
|
|
1003
|
-
|
|
1004
|
-
[[package]]
|
|
1005
|
-
category = "main"
|
|
1006
|
-
description = "Runtime inspection utilities for typing module."
|
|
1007
|
-
marker = "python_version < \"3.8\""
|
|
1008
|
-
name = "typing-inspect"
|
|
1009
|
-
optional = false
|
|
1010
|
-
python-versions = "*"
|
|
1011
|
-
version = "0.5.0"
|
|
1012
|
-
|
|
1013
|
-
[package.dependencies]
|
|
1014
|
-
mypy-extensions = ">=0.3.0"
|
|
1015
|
-
typing-extensions = ">=3.7.4"
|
|
1016
|
-
|
|
1017
|
-
[[package]]
|
|
1018
|
-
category = "main"
|
|
1019
|
-
description = "HTTP library with thread-safe connection pooling, file post, and more."
|
|
1020
|
-
name = "urllib3"
|
|
1021
|
-
optional = false
|
|
1022
|
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
|
|
1023
|
-
version = "1.25.9"
|
|
1024
|
-
|
|
1025
|
-
[package.extras]
|
|
1026
|
-
brotli = ["brotlipy (>=0.6.0)"]
|
|
1027
|
-
secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "pyOpenSSL (>=0.14)", "ipaddress"]
|
|
1028
|
-
socks = ["PySocks (>=1.5.6,<1.5.7 || >1.5.7,<2.0)"]
|
|
1029
|
-
|
|
1030
|
-
[[package]]
|
|
1031
|
-
category = "dev"
|
|
1032
|
-
description = "Virtual Python Environment builder"
|
|
1033
|
-
name = "virtualenv"
|
|
1034
|
-
optional = false
|
|
1035
|
-
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7"
|
|
1036
|
-
version = "20.0.21"
|
|
1037
|
-
|
|
1038
|
-
[package.dependencies]
|
|
1039
|
-
appdirs = ">=1.4.3,<2"
|
|
1040
|
-
distlib = ">=0.3.0,<1"
|
|
1041
|
-
filelock = ">=3.0.0,<4"
|
|
1042
|
-
six = ">=1.9.0,<2"
|
|
1043
|
-
|
|
1044
|
-
[package.dependencies.importlib-metadata]
|
|
1045
|
-
python = "<3.8"
|
|
1046
|
-
version = ">=0.12,<2"
|
|
1047
|
-
|
|
1048
|
-
[package.dependencies.importlib-resources]
|
|
1049
|
-
python = "<3.7"
|
|
1050
|
-
version = ">=1.0,<2"
|
|
1051
|
-
|
|
1052
|
-
[package.extras]
|
|
1053
|
-
docs = ["sphinx (>=3)", "sphinx-argparse (>=0.2.5)", "sphinx-rtd-theme (>=0.4.3)", "towncrier (>=19.9.0rc1)", "proselint (>=0.10.2)"]
|
|
1054
|
-
testing = ["pytest (>=4)", "coverage (>=5)", "coverage-enable-subprocess (>=1)", "pytest-xdist (>=1.31.0)", "pytest-mock (>=2)", "pytest-env (>=0.6.2)", "pytest-randomly (>=1)", "pytest-timeout", "packaging (>=20.0)", "xonsh (>=0.9.16)"]
|
|
1055
|
-
|
|
1056
|
-
[[package]]
|
|
1057
|
-
category = "dev"
|
|
1058
|
-
description = "Measures number of Terminal column cells of wide-character codes"
|
|
1059
|
-
name = "wcwidth"
|
|
1060
|
-
optional = false
|
|
1061
|
-
python-versions = "*"
|
|
1062
|
-
version = "0.1.9"
|
|
1063
|
-
|
|
1064
|
-
[[package]]
|
|
1065
|
-
category = "dev"
|
|
1066
|
-
description = "Character encoding aliases for legacy web content"
|
|
1067
|
-
name = "webencodings"
|
|
1068
|
-
optional = false
|
|
1069
|
-
python-versions = "*"
|
|
1070
|
-
version = "0.5.1"
|
|
1071
|
-
|
|
1072
|
-
[[package]]
|
|
1073
|
-
category = "main"
|
|
1074
|
-
description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)"
|
|
1075
|
-
name = "websockets"
|
|
1076
|
-
optional = false
|
|
1077
|
-
python-versions = ">=3.6.1"
|
|
1078
|
-
version = "8.1"
|
|
1079
|
-
|
|
1080
|
-
[[package]]
|
|
1081
|
-
category = "dev"
|
|
1082
|
-
description = "Module for decorators, wrappers and monkey patching."
|
|
1083
|
-
name = "wrapt"
|
|
1084
|
-
optional = false
|
|
1085
|
-
python-versions = "*"
|
|
1086
|
-
version = "1.12.1"
|
|
1087
|
-
|
|
1088
|
-
[[package]]
|
|
1089
|
-
category = "dev"
|
|
1090
|
-
description = "Yet another URL library"
|
|
1091
|
-
name = "yarl"
|
|
1092
|
-
optional = false
|
|
1093
|
-
python-versions = ">=3.5"
|
|
1094
|
-
version = "1.4.2"
|
|
1095
|
-
|
|
1096
|
-
[package.dependencies]
|
|
1097
|
-
idna = ">=2.0"
|
|
1098
|
-
multidict = ">=4.0"
|
|
1099
|
-
|
|
1100
|
-
[[package]]
|
|
1101
|
-
category = "dev"
|
|
1102
|
-
description = "Backport of pathlib-compatible object wrapper for zip files"
|
|
1103
|
-
marker = "python_version < \"3.8\""
|
|
1104
|
-
name = "zipp"
|
|
1105
|
-
optional = false
|
|
1106
|
-
python-versions = ">=3.6"
|
|
1107
|
-
version = "3.1.0"
|
|
1108
|
-
|
|
1109
|
-
[package.extras]
|
|
1110
|
-
docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"]
|
|
1111
|
-
testing = ["jaraco.itertools", "func-timeout"]
|
|
1112
|
-
|
|
1113
|
-
[metadata]
|
|
1114
|
-
content-hash = "bbd1eda9cc30293714ef661458c8ce682a477d4cbb7365422e582c752fce4c76"
|
|
1115
|
-
python-versions = "^3.6.1"
|
|
1116
|
-
|
|
1117
|
-
[metadata.files]
|
|
1118
|
-
aenum = [
|
|
1119
|
-
{file = "aenum-2.2.3-py2-none-any.whl", hash = "sha256:d2bb6ea7586aaae889d3a5c332eafa851eeffe6e7068807c79b6c86c4326b938"},
|
|
1120
|
-
{file = "aenum-2.2.3-py3-none-any.whl", hash = "sha256:284ddb976413d97239a932d7e5202ba58d66e5dbd81531bf3033ebb36ec30b23"},
|
|
1121
|
-
{file = "aenum-2.2.3.tar.gz", hash = "sha256:a4334cabf47c167d44ab5a6198837b80deec5d5bad1b5cf70c966c3a330260e8"},
|
|
1122
|
-
]
|
|
1123
|
-
aiohttp = [
|
|
1124
|
-
{file = "aiohttp-3.6.2-cp35-cp35m-macosx_10_13_x86_64.whl", hash = "sha256:1e984191d1ec186881ffaed4581092ba04f7c61582a177b187d3a2f07ed9719e"},
|
|
1125
|
-
{file = "aiohttp-3.6.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:50aaad128e6ac62e7bf7bd1f0c0a24bc968a0c0590a726d5a955af193544bcec"},
|
|
1126
|
-
{file = "aiohttp-3.6.2-cp36-cp36m-macosx_10_13_x86_64.whl", hash = "sha256:65f31b622af739a802ca6fd1a3076fd0ae523f8485c52924a89561ba10c49b48"},
|
|
1127
|
-
{file = "aiohttp-3.6.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:ae55bac364c405caa23a4f2d6cfecc6a0daada500274ffca4a9230e7129eac59"},
|
|
1128
|
-
{file = "aiohttp-3.6.2-cp36-cp36m-win32.whl", hash = "sha256:344c780466b73095a72c616fac5ea9c4665add7fc129f285fbdbca3cccf4612a"},
|
|
1129
|
-
{file = "aiohttp-3.6.2-cp36-cp36m-win_amd64.whl", hash = "sha256:4c6efd824d44ae697814a2a85604d8e992b875462c6655da161ff18fd4f29f17"},
|
|
1130
|
-
{file = "aiohttp-3.6.2-cp37-cp37m-macosx_10_13_x86_64.whl", hash = "sha256:2f4d1a4fdce595c947162333353d4a44952a724fba9ca3205a3df99a33d1307a"},
|
|
1131
|
-
{file = "aiohttp-3.6.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:6206a135d072f88da3e71cc501c59d5abffa9d0bb43269a6dcd28d66bfafdbdd"},
|
|
1132
|
-
{file = "aiohttp-3.6.2-cp37-cp37m-win32.whl", hash = "sha256:b778ce0c909a2653741cb4b1ac7015b5c130ab9c897611df43ae6a58523cb965"},
|
|
1133
|
-
{file = "aiohttp-3.6.2-cp37-cp37m-win_amd64.whl", hash = "sha256:32e5f3b7e511aa850829fbe5aa32eb455e5534eaa4b1ce93231d00e2f76e5654"},
|
|
1134
|
-
{file = "aiohttp-3.6.2-py3-none-any.whl", hash = "sha256:460bd4237d2dbecc3b5ed57e122992f60188afe46e7319116da5eb8a9dfedba4"},
|
|
1135
|
-
{file = "aiohttp-3.6.2.tar.gz", hash = "sha256:259ab809ff0727d0e834ac5e8a283dc5e3e0ecc30c4d80b3cd17a4139ce1f326"},
|
|
1136
|
-
]
|
|
1137
|
-
alabaster = [
|
|
1138
|
-
{file = "alabaster-0.7.12-py2.py3-none-any.whl", hash = "sha256:446438bdcca0e05bd45ea2de1668c1d9b032e1a9154c2c259092d77031ddd359"},
|
|
1139
|
-
{file = "alabaster-0.7.12.tar.gz", hash = "sha256:a661d72d58e6ea8a57f7a86e37d86716863ee5e92788398526d58b26a4e4dc02"},
|
|
1140
|
-
]
|
|
1141
|
-
apipkg = [
|
|
1142
|
-
{file = "apipkg-1.5-py2.py3-none-any.whl", hash = "sha256:58587dd4dc3daefad0487f6d9ae32b4542b185e1c36db6993290e7c41ca2b47c"},
|
|
1143
|
-
{file = "apipkg-1.5.tar.gz", hash = "sha256:37228cda29411948b422fae072f57e31d3396d2ee1c9783775980ee9c9990af6"},
|
|
1144
|
-
]
|
|
1145
|
-
appdirs = [
|
|
1146
|
-
{file = "appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128"},
|
|
1147
|
-
{file = "appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41"},
|
|
1148
|
-
]
|
|
1149
|
-
astroid = [
|
|
1150
|
-
{file = "astroid-2.4.1-py3-none-any.whl", hash = "sha256:d8506842a3faf734b81599c8b98dcc423de863adcc1999248480b18bd31a0f38"},
|
|
1151
|
-
{file = "astroid-2.4.1.tar.gz", hash = "sha256:4c17cea3e592c21b6e222f673868961bad77e1f985cb1694ed077475a89229c1"},
|
|
1152
|
-
]
|
|
1153
|
-
async-timeout = [
|
|
1154
|
-
{file = "async-timeout-3.0.1.tar.gz", hash = "sha256:0c3c816a028d47f659d6ff5c745cb2acf1f966da1fe5c19c77a70282b25f4c5f"},
|
|
1155
|
-
{file = "async_timeout-3.0.1-py3-none-any.whl", hash = "sha256:4291ca197d287d274d0b6cb5d6f8f8f82d434ed288f962539ff18cc9012f9ea3"},
|
|
1156
|
-
]
|
|
1157
|
-
atomicwrites = [
|
|
1158
|
-
{file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"},
|
|
1159
|
-
{file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"},
|
|
1160
|
-
]
|
|
1161
|
-
attrs = [
|
|
1162
|
-
{file = "attrs-19.3.0-py2.py3-none-any.whl", hash = "sha256:08a96c641c3a74e44eb59afb61a24f2cb9f4d7188748e76ba4bb5edfa3cb7d1c"},
|
|
1163
|
-
{file = "attrs-19.3.0.tar.gz", hash = "sha256:f7b7ce16570fe9965acd6d30101a28f62fb4a7f9e926b3bbc9b61f8b04247e72"},
|
|
1164
|
-
]
|
|
1165
|
-
babel = [
|
|
1166
|
-
{file = "Babel-2.8.0-py2.py3-none-any.whl", hash = "sha256:d670ea0b10f8b723672d3a6abeb87b565b244da220d76b4dba1b66269ec152d4"},
|
|
1167
|
-
{file = "Babel-2.8.0.tar.gz", hash = "sha256:1aac2ae2d0d8ea368fa90906567f5c08463d98ade155c0c4bfedd6a0f7160e38"},
|
|
1168
|
-
]
|
|
1169
|
-
bleach = [
|
|
1170
|
-
{file = "bleach-3.1.5-py2.py3-none-any.whl", hash = "sha256:2bce3d8fab545a6528c8fa5d9f9ae8ebc85a56da365c7f85180bfe96a35ef22f"},
|
|
1171
|
-
{file = "bleach-3.1.5.tar.gz", hash = "sha256:3c4c520fdb9db59ef139915a5db79f8b51bc2a7257ea0389f30c846883430a4b"},
|
|
1172
|
-
]
|
|
1173
|
-
certifi = [
|
|
1174
|
-
{file = "certifi-2020.4.5.1-py2.py3-none-any.whl", hash = "sha256:1d987a998c75633c40847cc966fcf5904906c920a7f17ef374f5aa4282abd304"},
|
|
1175
|
-
{file = "certifi-2020.4.5.1.tar.gz", hash = "sha256:51fcb31174be6e6664c5f69e3e1691a2d72a1a12e90f872cbdb1567eb47b6519"},
|
|
1176
|
-
]
|
|
1177
|
-
cfgv = [
|
|
1178
|
-
{file = "cfgv-3.1.0-py2.py3-none-any.whl", hash = "sha256:1ccf53320421aeeb915275a196e23b3b8ae87dea8ac6698b1638001d4a486d53"},
|
|
1179
|
-
{file = "cfgv-3.1.0.tar.gz", hash = "sha256:c8e8f552ffcc6194f4e18dd4f68d9aef0c0d58ae7e7be8c82bee3c5e9edfa513"},
|
|
1180
|
-
]
|
|
1181
|
-
chardet = [
|
|
1182
|
-
{file = "chardet-3.0.4-py2.py3-none-any.whl", hash = "sha256:fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691"},
|
|
1183
|
-
{file = "chardet-3.0.4.tar.gz", hash = "sha256:84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae"},
|
|
1184
|
-
]
|
|
1185
|
-
cloudpickle = [
|
|
1186
|
-
{file = "cloudpickle-1.4.1-py3-none-any.whl", hash = "sha256:ff31298eca781315e097bc1f222d8045208c14063a0102cc89bd5899adb4abef"},
|
|
1187
|
-
{file = "cloudpickle-1.4.1.tar.gz", hash = "sha256:0b6258a20a143603d53b037a20983016d4e978f554ec4f36b3d0895b947099ae"},
|
|
1188
|
-
]
|
|
1189
|
-
colorama = [
|
|
1190
|
-
{file = "colorama-0.4.3-py2.py3-none-any.whl", hash = "sha256:7d73d2a99753107a36ac6b455ee49046802e59d9d076ef8e47b61499fa29afff"},
|
|
1191
|
-
{file = "colorama-0.4.3.tar.gz", hash = "sha256:e96da0d330793e2cb9485e9ddfd918d456036c7149416295932478192f4436a1"},
|
|
1192
|
-
]
|
|
1193
|
-
coverage = [
|
|
1194
|
-
{file = "coverage-5.1-cp27-cp27m-macosx_10_12_x86_64.whl", hash = "sha256:0cb4be7e784dcdc050fc58ef05b71aa8e89b7e6636b99967fadbdba694cf2b65"},
|
|
1195
|
-
{file = "coverage-5.1-cp27-cp27m-macosx_10_13_intel.whl", hash = "sha256:c317eaf5ff46a34305b202e73404f55f7389ef834b8dbf4da09b9b9b37f76dd2"},
|
|
1196
|
-
{file = "coverage-5.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:b83835506dfc185a319031cf853fa4bb1b3974b1f913f5bb1a0f3d98bdcded04"},
|
|
1197
|
-
{file = "coverage-5.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:5f2294dbf7875b991c381e3d5af2bcc3494d836affa52b809c91697449d0eda6"},
|
|
1198
|
-
{file = "coverage-5.1-cp27-cp27m-win32.whl", hash = "sha256:de807ae933cfb7f0c7d9d981a053772452217df2bf38e7e6267c9cbf9545a796"},
|
|
1199
|
-
{file = "coverage-5.1-cp27-cp27m-win_amd64.whl", hash = "sha256:bf9cb9a9fd8891e7efd2d44deb24b86d647394b9705b744ff6f8261e6f29a730"},
|
|
1200
|
-
{file = "coverage-5.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:acf3763ed01af8410fc36afea23707d4ea58ba7e86a8ee915dfb9ceff9ef69d0"},
|
|
1201
|
-
{file = "coverage-5.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:dec5202bfe6f672d4511086e125db035a52b00f1648d6407cc8e526912c0353a"},
|
|
1202
|
-
{file = "coverage-5.1-cp35-cp35m-macosx_10_12_x86_64.whl", hash = "sha256:7a5bdad4edec57b5fb8dae7d3ee58622d626fd3a0be0dfceda162a7035885ecf"},
|
|
1203
|
-
{file = "coverage-5.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:1601e480b9b99697a570cea7ef749e88123c04b92d84cedaa01e117436b4a0a9"},
|
|
1204
|
-
{file = "coverage-5.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:dbe8c6ae7534b5b024296464f387d57c13caa942f6d8e6e0346f27e509f0f768"},
|
|
1205
|
-
{file = "coverage-5.1-cp35-cp35m-win32.whl", hash = "sha256:a027ef0492ede1e03a8054e3c37b8def89a1e3c471482e9f046906ba4f2aafd2"},
|
|
1206
|
-
{file = "coverage-5.1-cp35-cp35m-win_amd64.whl", hash = "sha256:0e61d9803d5851849c24f78227939c701ced6704f337cad0a91e0972c51c1ee7"},
|
|
1207
|
-
{file = "coverage-5.1-cp36-cp36m-macosx_10_13_x86_64.whl", hash = "sha256:2d27a3f742c98e5c6b461ee6ef7287400a1956c11421eb574d843d9ec1f772f0"},
|
|
1208
|
-
{file = "coverage-5.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:66460ab1599d3cf894bb6baee8c684788819b71a5dc1e8fa2ecc152e5d752019"},
|
|
1209
|
-
{file = "coverage-5.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:5c542d1e62eece33c306d66fe0a5c4f7f7b3c08fecc46ead86d7916684b36d6c"},
|
|
1210
|
-
{file = "coverage-5.1-cp36-cp36m-win32.whl", hash = "sha256:2742c7515b9eb368718cd091bad1a1b44135cc72468c731302b3d641895b83d1"},
|
|
1211
|
-
{file = "coverage-5.1-cp36-cp36m-win_amd64.whl", hash = "sha256:dead2ddede4c7ba6cb3a721870f5141c97dc7d85a079edb4bd8d88c3ad5b20c7"},
|
|
1212
|
-
{file = "coverage-5.1-cp37-cp37m-macosx_10_13_x86_64.whl", hash = "sha256:01333e1bd22c59713ba8a79f088b3955946e293114479bbfc2e37d522be03355"},
|
|
1213
|
-
{file = "coverage-5.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:e1ea316102ea1e1770724db01998d1603ed921c54a86a2efcb03428d5417e489"},
|
|
1214
|
-
{file = "coverage-5.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:adeb4c5b608574a3d647011af36f7586811a2c1197c861aedb548dd2453b41cd"},
|
|
1215
|
-
{file = "coverage-5.1-cp37-cp37m-win32.whl", hash = "sha256:782caea581a6e9ff75eccda79287daefd1d2631cc09d642b6ee2d6da21fc0a4e"},
|
|
1216
|
-
{file = "coverage-5.1-cp37-cp37m-win_amd64.whl", hash = "sha256:00f1d23f4336efc3b311ed0d807feb45098fc86dee1ca13b3d6768cdab187c8a"},
|
|
1217
|
-
{file = "coverage-5.1-cp38-cp38-macosx_10_13_x86_64.whl", hash = "sha256:402e1744733df483b93abbf209283898e9f0d67470707e3c7516d84f48524f55"},
|
|
1218
|
-
{file = "coverage-5.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:a3f3654d5734a3ece152636aad89f58afc9213c6520062db3978239db122f03c"},
|
|
1219
|
-
{file = "coverage-5.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:6402bd2fdedabbdb63a316308142597534ea8e1895f4e7d8bf7476c5e8751fef"},
|
|
1220
|
-
{file = "coverage-5.1-cp38-cp38-win32.whl", hash = "sha256:8fa0cbc7ecad630e5b0f4f35b0f6ad419246b02bc750de7ac66db92667996d24"},
|
|
1221
|
-
{file = "coverage-5.1-cp38-cp38-win_amd64.whl", hash = "sha256:79a3cfd6346ce6c13145731d39db47b7a7b859c0272f02cdb89a3bdcbae233a0"},
|
|
1222
|
-
{file = "coverage-5.1-cp39-cp39-win32.whl", hash = "sha256:a82b92b04a23d3c8a581fc049228bafde988abacba397d57ce95fe95e0338ab4"},
|
|
1223
|
-
{file = "coverage-5.1-cp39-cp39-win_amd64.whl", hash = "sha256:bb28a7245de68bf29f6fb199545d072d1036a1917dca17a1e75bbb919e14ee8e"},
|
|
1224
|
-
{file = "coverage-5.1.tar.gz", hash = "sha256:f90bfc4ad18450c80b024036eaf91e4a246ae287701aaa88eaebebf150868052"},
|
|
1225
|
-
]
|
|
1226
|
-
decorator = [
|
|
1227
|
-
{file = "decorator-4.4.2-py2.py3-none-any.whl", hash = "sha256:41fa54c2a0cc4ba648be4fd43cff00aedf5b9465c9bf18d64325bc225f08f760"},
|
|
1228
|
-
{file = "decorator-4.4.2.tar.gz", hash = "sha256:e3a62f0520172440ca0dcc823749319382e377f37f140a0b99ef45fecb84bfe7"},
|
|
1229
|
-
]
|
|
1230
|
-
diff-match-patch = [
|
|
1231
|
-
{file = "diff-match-patch-20181111.tar.gz", hash = "sha256:a809a996d0f09b9bbd59e9bbd0b71eed8c807922512910e05cbd3f9480712ddb"},
|
|
1232
|
-
]
|
|
1233
|
-
distlib = [
|
|
1234
|
-
{file = "distlib-0.3.0.zip", hash = "sha256:2e166e231a26b36d6dfe35a48c4464346620f8645ed0ace01ee31822b288de21"},
|
|
1235
|
-
]
|
|
1236
|
-
docutils = [
|
|
1237
|
-
{file = "docutils-0.16-py2.py3-none-any.whl", hash = "sha256:0c5b78adfbf7762415433f5515cd5c9e762339e23369dbe8000d84a4bf4ab3af"},
|
|
1238
|
-
{file = "docutils-0.16.tar.gz", hash = "sha256:c2de3a60e9e7d07be26b7f2b00ca0309c207e06c100f9cc2a94931fc75a478fc"},
|
|
1239
|
-
]
|
|
1240
|
-
doit = [
|
|
1241
|
-
{file = "doit-0.32.0.tar.gz", hash = "sha256:323d0411e50a0babb945e2a639aa6e633fbb84a9f98086df0c880e739237750c"},
|
|
1242
|
-
]
|
|
1243
|
-
execnet = [
|
|
1244
|
-
{file = "execnet-1.7.1-py2.py3-none-any.whl", hash = "sha256:d4efd397930c46415f62f8a31388d6be4f27a91d7550eb79bc64a756e0056547"},
|
|
1245
|
-
{file = "execnet-1.7.1.tar.gz", hash = "sha256:cacb9df31c9680ec5f95553976c4da484d407e85e41c83cb812aa014f0eddc50"},
|
|
1246
|
-
]
|
|
1247
|
-
filelock = [
|
|
1248
|
-
{file = "filelock-3.0.12-py3-none-any.whl", hash = "sha256:929b7d63ec5b7d6b71b0fa5ac14e030b3f70b75747cef1b10da9b879fef15836"},
|
|
1249
|
-
{file = "filelock-3.0.12.tar.gz", hash = "sha256:18d82244ee114f543149c66a6e0c14e9c4f8a1044b5cdaadd0f82159d6a6ff59"},
|
|
1250
|
-
]
|
|
1251
|
-
flake8 = [
|
|
1252
|
-
{file = "flake8-3.8.2-py2.py3-none-any.whl", hash = "sha256:ccaa799ef9893cebe69fdfefed76865aeaefbb94cb8545617b2298786a4de9a5"},
|
|
1253
|
-
{file = "flake8-3.8.2.tar.gz", hash = "sha256:c69ac1668e434d37a2d2880b3ca9aafd54b3a10a3ac1ab101d22f29e29cf8634"},
|
|
1254
|
-
]
|
|
1255
|
-
identify = [
|
|
1256
|
-
{file = "identify-1.4.17-py2.py3-none-any.whl", hash = "sha256:ef6fa3d125c27516f8d1aaa2038c3263d741e8723825eb38350cdc0288ab35eb"},
|
|
1257
|
-
{file = "identify-1.4.17.tar.gz", hash = "sha256:be66b9673d59336acd18a3a0e0c10d35b8a780309561edf16c46b6b74b83f6af"},
|
|
1258
|
-
]
|
|
1259
|
-
idna = [
|
|
1260
|
-
{file = "idna-2.9-py2.py3-none-any.whl", hash = "sha256:a068a21ceac8a4d63dbfd964670474107f541babbd2250d61922f029858365fa"},
|
|
1261
|
-
{file = "idna-2.9.tar.gz", hash = "sha256:7588d1c14ae4c77d74036e8c22ff447b26d0fde8f007354fd48a7814db15b7cb"},
|
|
1262
|
-
]
|
|
1263
|
-
idna-ssl = [
|
|
1264
|
-
{file = "idna-ssl-1.1.0.tar.gz", hash = "sha256:a933e3bb13da54383f9e8f35dc4f9cb9eb9b3b78c6b36f311254d6d0d92c6c7c"},
|
|
1265
|
-
]
|
|
1266
|
-
imagesize = [
|
|
1267
|
-
{file = "imagesize-1.2.0-py2.py3-none-any.whl", hash = "sha256:6965f19a6a2039c7d48bca7dba2473069ff854c36ae6f19d2cde309d998228a1"},
|
|
1268
|
-
{file = "imagesize-1.2.0.tar.gz", hash = "sha256:b1f6b5a4eab1f73479a50fb79fcf729514a900c341d8503d62a62dbc4127a2b1"},
|
|
1269
|
-
]
|
|
1270
|
-
importlib-metadata = [
|
|
1271
|
-
{file = "importlib_metadata-1.6.0-py2.py3-none-any.whl", hash = "sha256:2a688cbaa90e0cc587f1df48bdc97a6eadccdcd9c35fb3f976a09e3b5016d90f"},
|
|
1272
|
-
{file = "importlib_metadata-1.6.0.tar.gz", hash = "sha256:34513a8a0c4962bc66d35b359558fd8a5e10cd472d37aec5f66858addef32c1e"},
|
|
1273
|
-
]
|
|
1274
|
-
importlib-resources = [
|
|
1275
|
-
{file = "importlib_resources-1.5.0-py2.py3-none-any.whl", hash = "sha256:85dc0b9b325ff78c8bef2e4ff42616094e16b98ebd5e3b50fe7e2f0bbcdcde49"},
|
|
1276
|
-
{file = "importlib_resources-1.5.0.tar.gz", hash = "sha256:6f87df66833e1942667108628ec48900e02a4ab4ad850e25fbf07cb17cf734ca"},
|
|
1277
|
-
]
|
|
1278
|
-
isort = [
|
|
1279
|
-
{file = "isort-4.3.21-py2.py3-none-any.whl", hash = "sha256:6e811fcb295968434526407adb8796944f1988c5b65e8139058f2014cbe100fd"},
|
|
1280
|
-
{file = "isort-4.3.21.tar.gz", hash = "sha256:54da7e92468955c4fceacd0c86bd0ec997b0e1ee80d97f67c35a78b719dccab1"},
|
|
1281
|
-
]
|
|
1282
|
-
jinja2 = [
|
|
1283
|
-
{file = "Jinja2-2.11.2-py2.py3-none-any.whl", hash = "sha256:f0a4641d3cf955324a89c04f3d94663aa4d638abe8f733ecd3582848e1c37035"},
|
|
1284
|
-
{file = "Jinja2-2.11.2.tar.gz", hash = "sha256:89aab215427ef59c34ad58735269eb58b1a5808103067f7bb9d5836c651b3bb0"},
|
|
1285
|
-
]
|
|
1286
|
-
lazy-object-proxy = [
|
|
1287
|
-
{file = "lazy-object-proxy-1.4.3.tar.gz", hash = "sha256:f3900e8a5de27447acbf900b4750b0ddfd7ec1ea7fbaf11dfa911141bc522af0"},
|
|
1288
|
-
{file = "lazy_object_proxy-1.4.3-cp27-cp27m-macosx_10_13_x86_64.whl", hash = "sha256:a2238e9d1bb71a56cd710611a1614d1194dc10a175c1e08d75e1a7bcc250d442"},
|
|
1289
|
-
{file = "lazy_object_proxy-1.4.3-cp27-cp27m-win32.whl", hash = "sha256:efa1909120ce98bbb3777e8b6f92237f5d5c8ea6758efea36a473e1d38f7d3e4"},
|
|
1290
|
-
{file = "lazy_object_proxy-1.4.3-cp27-cp27m-win_amd64.whl", hash = "sha256:4677f594e474c91da97f489fea5b7daa17b5517190899cf213697e48d3902f5a"},
|
|
1291
|
-
{file = "lazy_object_proxy-1.4.3-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:0c4b206227a8097f05c4dbdd323c50edf81f15db3b8dc064d08c62d37e1a504d"},
|
|
1292
|
-
{file = "lazy_object_proxy-1.4.3-cp34-cp34m-manylinux1_x86_64.whl", hash = "sha256:d945239a5639b3ff35b70a88c5f2f491913eb94871780ebfabb2568bd58afc5a"},
|
|
1293
|
-
{file = "lazy_object_proxy-1.4.3-cp34-cp34m-win32.whl", hash = "sha256:9651375199045a358eb6741df3e02a651e0330be090b3bc79f6d0de31a80ec3e"},
|
|
1294
|
-
{file = "lazy_object_proxy-1.4.3-cp34-cp34m-win_amd64.whl", hash = "sha256:eba7011090323c1dadf18b3b689845fd96a61ba0a1dfbd7f24b921398affc357"},
|
|
1295
|
-
{file = "lazy_object_proxy-1.4.3-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:48dab84ebd4831077b150572aec802f303117c8cc5c871e182447281ebf3ac50"},
|
|
1296
|
-
{file = "lazy_object_proxy-1.4.3-cp35-cp35m-win32.whl", hash = "sha256:ca0a928a3ddbc5725be2dd1cf895ec0a254798915fb3a36af0964a0a4149e3db"},
|
|
1297
|
-
{file = "lazy_object_proxy-1.4.3-cp35-cp35m-win_amd64.whl", hash = "sha256:194d092e6f246b906e8f70884e620e459fc54db3259e60cf69a4d66c3fda3449"},
|
|
1298
|
-
{file = "lazy_object_proxy-1.4.3-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:97bb5884f6f1cdce0099f86b907aa41c970c3c672ac8b9c8352789e103cf3156"},
|
|
1299
|
-
{file = "lazy_object_proxy-1.4.3-cp36-cp36m-win32.whl", hash = "sha256:cb2c7c57005a6804ab66f106ceb8482da55f5314b7fcb06551db1edae4ad1531"},
|
|
1300
|
-
{file = "lazy_object_proxy-1.4.3-cp36-cp36m-win_amd64.whl", hash = "sha256:8d859b89baf8ef7f8bc6b00aa20316483d67f0b1cbf422f5b4dc56701c8f2ffb"},
|
|
1301
|
-
{file = "lazy_object_proxy-1.4.3-cp37-cp37m-macosx_10_13_x86_64.whl", hash = "sha256:1be7e4c9f96948003609aa6c974ae59830a6baecc5376c25c92d7d697e684c08"},
|
|
1302
|
-
{file = "lazy_object_proxy-1.4.3-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:d74bb8693bf9cf75ac3b47a54d716bbb1a92648d5f781fc799347cfc95952383"},
|
|
1303
|
-
{file = "lazy_object_proxy-1.4.3-cp37-cp37m-win32.whl", hash = "sha256:9b15f3f4c0f35727d3a0fba4b770b3c4ebbb1fa907dbcc046a1d2799f3edd142"},
|
|
1304
|
-
{file = "lazy_object_proxy-1.4.3-cp37-cp37m-win_amd64.whl", hash = "sha256:9254f4358b9b541e3441b007a0ea0764b9d056afdeafc1a5569eee1cc6c1b9ea"},
|
|
1305
|
-
{file = "lazy_object_proxy-1.4.3-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:a6ae12d08c0bf9909ce12385803a543bfe99b95fe01e752536a60af2b7797c62"},
|
|
1306
|
-
{file = "lazy_object_proxy-1.4.3-cp38-cp38-win32.whl", hash = "sha256:5541cada25cd173702dbd99f8e22434105456314462326f06dba3e180f203dfd"},
|
|
1307
|
-
{file = "lazy_object_proxy-1.4.3-cp38-cp38-win_amd64.whl", hash = "sha256:59f79fef100b09564bc2df42ea2d8d21a64fdcda64979c0fa3db7bdaabaf6239"},
|
|
1308
|
-
]
|
|
1309
|
-
livereload = [
|
|
1310
|
-
{file = "livereload-2.6.1-py2.py3-none-any.whl", hash = "sha256:78d55f2c268a8823ba499305dcac64e28ddeb9a92571e12d543cd304faf5817b"},
|
|
1311
|
-
{file = "livereload-2.6.1.tar.gz", hash = "sha256:89254f78d7529d7ea0a3417d224c34287ebfe266b05e67e51facaf82c27f0f66"},
|
|
1312
|
-
]
|
|
1313
|
-
m2r = [
|
|
1314
|
-
{file = "m2r-0.2.1.tar.gz", hash = "sha256:bf90bad66cda1164b17e5ba4a037806d2443f2a4d5ddc9f6a5554a0322aaed99"},
|
|
1315
|
-
]
|
|
1316
|
-
macfsevents = [
|
|
1317
|
-
{file = "MacFSEvents-0.8.1.tar.gz", hash = "sha256:1324b66b356051de662ba87d84f73ada062acd42b047ed1246e60a449f833e10"},
|
|
1318
|
-
]
|
|
1319
|
-
markupsafe = [
|
|
1320
|
-
{file = "MarkupSafe-1.1.1-cp27-cp27m-macosx_10_6_intel.whl", hash = "sha256:09027a7803a62ca78792ad89403b1b7a73a01c8cb65909cd876f7fcebd79b161"},
|
|
1321
|
-
{file = "MarkupSafe-1.1.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:e249096428b3ae81b08327a63a485ad0878de3fb939049038579ac0ef61e17e7"},
|
|
1322
|
-
{file = "MarkupSafe-1.1.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:500d4957e52ddc3351cabf489e79c91c17f6e0899158447047588650b5e69183"},
|
|
1323
|
-
{file = "MarkupSafe-1.1.1-cp27-cp27m-win32.whl", hash = "sha256:b2051432115498d3562c084a49bba65d97cf251f5a331c64a12ee7e04dacc51b"},
|
|
1324
|
-
{file = "MarkupSafe-1.1.1-cp27-cp27m-win_amd64.whl", hash = "sha256:98c7086708b163d425c67c7a91bad6e466bb99d797aa64f965e9d25c12111a5e"},
|
|
1325
|
-
{file = "MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:cd5df75523866410809ca100dc9681e301e3c27567cf498077e8551b6d20e42f"},
|
|
1326
|
-
{file = "MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:43a55c2930bbc139570ac2452adf3d70cdbb3cfe5912c71cdce1c2c6bbd9c5d1"},
|
|
1327
|
-
{file = "MarkupSafe-1.1.1-cp34-cp34m-macosx_10_6_intel.whl", hash = "sha256:1027c282dad077d0bae18be6794e6b6b8c91d58ed8a8d89a89d59693b9131db5"},
|
|
1328
|
-
{file = "MarkupSafe-1.1.1-cp34-cp34m-manylinux1_i686.whl", hash = "sha256:62fe6c95e3ec8a7fad637b7f3d372c15ec1caa01ab47926cfdf7a75b40e0eac1"},
|
|
1329
|
-
{file = "MarkupSafe-1.1.1-cp34-cp34m-manylinux1_x86_64.whl", hash = "sha256:88e5fcfb52ee7b911e8bb6d6aa2fd21fbecc674eadd44118a9cc3863f938e735"},
|
|
1330
|
-
{file = "MarkupSafe-1.1.1-cp34-cp34m-win32.whl", hash = "sha256:ade5e387d2ad0d7ebf59146cc00c8044acbd863725f887353a10df825fc8ae21"},
|
|
1331
|
-
{file = "MarkupSafe-1.1.1-cp34-cp34m-win_amd64.whl", hash = "sha256:09c4b7f37d6c648cb13f9230d847adf22f8171b1ccc4d5682398e77f40309235"},
|
|
1332
|
-
{file = "MarkupSafe-1.1.1-cp35-cp35m-macosx_10_6_intel.whl", hash = "sha256:79855e1c5b8da654cf486b830bd42c06e8780cea587384cf6545b7d9ac013a0b"},
|
|
1333
|
-
{file = "MarkupSafe-1.1.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:c8716a48d94b06bb3b2524c2b77e055fb313aeb4ea620c8dd03a105574ba704f"},
|
|
1334
|
-
{file = "MarkupSafe-1.1.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:7c1699dfe0cf8ff607dbdcc1e9b9af1755371f92a68f706051cc8c37d447c905"},
|
|
1335
|
-
{file = "MarkupSafe-1.1.1-cp35-cp35m-win32.whl", hash = "sha256:6dd73240d2af64df90aa7c4e7481e23825ea70af4b4922f8ede5b9e35f78a3b1"},
|
|
1336
|
-
{file = "MarkupSafe-1.1.1-cp35-cp35m-win_amd64.whl", hash = "sha256:9add70b36c5666a2ed02b43b335fe19002ee5235efd4b8a89bfcf9005bebac0d"},
|
|
1337
|
-
{file = "MarkupSafe-1.1.1-cp36-cp36m-macosx_10_6_intel.whl", hash = "sha256:24982cc2533820871eba85ba648cd53d8623687ff11cbb805be4ff7b4c971aff"},
|
|
1338
|
-
{file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:00bc623926325b26bb9605ae9eae8a215691f33cae5df11ca5424f06f2d1f473"},
|
|
1339
|
-
{file = "MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:717ba8fe3ae9cc0006d7c451f0bb265ee07739daf76355d06366154ee68d221e"},
|
|
1340
|
-
{file = "MarkupSafe-1.1.1-cp36-cp36m-win32.whl", hash = "sha256:535f6fc4d397c1563d08b88e485c3496cf5784e927af890fb3c3aac7f933ec66"},
|
|
1341
|
-
{file = "MarkupSafe-1.1.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b1282f8c00509d99fef04d8ba936b156d419be841854fe901d8ae224c59f0be5"},
|
|
1342
|
-
{file = "MarkupSafe-1.1.1-cp37-cp37m-macosx_10_6_intel.whl", hash = "sha256:8defac2f2ccd6805ebf65f5eeb132adcf2ab57aa11fdf4c0dd5169a004710e7d"},
|
|
1343
|
-
{file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:46c99d2de99945ec5cb54f23c8cd5689f6d7177305ebff350a58ce5f8de1669e"},
|
|
1344
|
-
{file = "MarkupSafe-1.1.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:ba59edeaa2fc6114428f1637ffff42da1e311e29382d81b339c1817d37ec93c6"},
|
|
1345
|
-
{file = "MarkupSafe-1.1.1-cp37-cp37m-win32.whl", hash = "sha256:b00c1de48212e4cc9603895652c5c410df699856a2853135b3967591e4beebc2"},
|
|
1346
|
-
{file = "MarkupSafe-1.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:9bf40443012702a1d2070043cb6291650a0841ece432556f784f004937f0f32c"},
|
|
1347
|
-
{file = "MarkupSafe-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6788b695d50a51edb699cb55e35487e430fa21f1ed838122d722e0ff0ac5ba15"},
|
|
1348
|
-
{file = "MarkupSafe-1.1.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:cdb132fc825c38e1aeec2c8aa9338310d29d337bebbd7baa06889d09a60a1fa2"},
|
|
1349
|
-
{file = "MarkupSafe-1.1.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:13d3144e1e340870b25e7b10b98d779608c02016d5184cfb9927a9f10c689f42"},
|
|
1350
|
-
{file = "MarkupSafe-1.1.1-cp38-cp38-win32.whl", hash = "sha256:596510de112c685489095da617b5bcbbac7dd6384aeebeda4df6025d0256a81b"},
|
|
1351
|
-
{file = "MarkupSafe-1.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:e8313f01ba26fbbe36c7be1966a7b7424942f670f38e666995b88d012765b9be"},
|
|
1352
|
-
{file = "MarkupSafe-1.1.1.tar.gz", hash = "sha256:29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b"},
|
|
1353
|
-
]
|
|
1354
|
-
mccabe = [
|
|
1355
|
-
{file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"},
|
|
1356
|
-
{file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"},
|
|
1357
|
-
]
|
|
1358
|
-
mistune = [
|
|
1359
|
-
{file = "mistune-0.8.4-py2.py3-none-any.whl", hash = "sha256:88a1051873018da288eee8538d476dffe1262495144b33ecb586c4ab266bb8d4"},
|
|
1360
|
-
{file = "mistune-0.8.4.tar.gz", hash = "sha256:59a3429db53c50b5c6bcc8a07f8848cb00d7dc8bdb431a4ab41920d201d4756e"},
|
|
1361
|
-
]
|
|
1362
|
-
more-itertools = [
|
|
1363
|
-
{file = "more-itertools-8.3.0.tar.gz", hash = "sha256:558bb897a2232f5e4f8e2399089e35aecb746e1f9191b6584a151647e89267be"},
|
|
1364
|
-
{file = "more_itertools-8.3.0-py3-none-any.whl", hash = "sha256:7818f596b1e87be009031c7653d01acc46ed422e6656b394b0f765ce66ed4982"},
|
|
1365
|
-
]
|
|
1366
|
-
multidict = [
|
|
1367
|
-
{file = "multidict-4.7.6-cp35-cp35m-macosx_10_14_x86_64.whl", hash = "sha256:275ca32383bc5d1894b6975bb4ca6a7ff16ab76fa622967625baeebcf8079000"},
|
|
1368
|
-
{file = "multidict-4.7.6-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:1ece5a3369835c20ed57adadc663400b5525904e53bae59ec854a5d36b39b21a"},
|
|
1369
|
-
{file = "multidict-4.7.6-cp35-cp35m-win32.whl", hash = "sha256:5141c13374e6b25fe6bf092052ab55c0c03d21bd66c94a0e3ae371d3e4d865a5"},
|
|
1370
|
-
{file = "multidict-4.7.6-cp35-cp35m-win_amd64.whl", hash = "sha256:9456e90649005ad40558f4cf51dbb842e32807df75146c6d940b6f5abb4a78f3"},
|
|
1371
|
-
{file = "multidict-4.7.6-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:e0d072ae0f2a179c375f67e3da300b47e1a83293c554450b29c900e50afaae87"},
|
|
1372
|
-
{file = "multidict-4.7.6-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:3750f2205b800aac4bb03b5ae48025a64e474d2c6cc79547988ba1d4122a09e2"},
|
|
1373
|
-
{file = "multidict-4.7.6-cp36-cp36m-win32.whl", hash = "sha256:f07acae137b71af3bb548bd8da720956a3bc9f9a0b87733e0899226a2317aeb7"},
|
|
1374
|
-
{file = "multidict-4.7.6-cp36-cp36m-win_amd64.whl", hash = "sha256:6513728873f4326999429a8b00fc7ceddb2509b01d5fd3f3be7881a257b8d463"},
|
|
1375
|
-
{file = "multidict-4.7.6-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:feed85993dbdb1dbc29102f50bca65bdc68f2c0c8d352468c25b54874f23c39d"},
|
|
1376
|
-
{file = "multidict-4.7.6-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:fcfbb44c59af3f8ea984de67ec7c306f618a3ec771c2843804069917a8f2e255"},
|
|
1377
|
-
{file = "multidict-4.7.6-cp37-cp37m-win32.whl", hash = "sha256:4538273208e7294b2659b1602490f4ed3ab1c8cf9dbdd817e0e9db8e64be2507"},
|
|
1378
|
-
{file = "multidict-4.7.6-cp37-cp37m-win_amd64.whl", hash = "sha256:d14842362ed4cf63751648e7672f7174c9818459d169231d03c56e84daf90b7c"},
|
|
1379
|
-
{file = "multidict-4.7.6-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:c026fe9a05130e44157b98fea3ab12969e5b60691a276150db9eda71710cd10b"},
|
|
1380
|
-
{file = "multidict-4.7.6-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:51a4d210404ac61d32dada00a50ea7ba412e6ea945bbe992e4d7a595276d2ec7"},
|
|
1381
|
-
{file = "multidict-4.7.6-cp38-cp38-win32.whl", hash = "sha256:5cf311a0f5ef80fe73e4f4c0f0998ec08f954a6ec72b746f3c179e37de1d210d"},
|
|
1382
|
-
{file = "multidict-4.7.6-cp38-cp38-win_amd64.whl", hash = "sha256:7388d2ef3c55a8ba80da62ecfafa06a1c097c18032a501ffd4cabbc52d7f2b19"},
|
|
1383
|
-
{file = "multidict-4.7.6.tar.gz", hash = "sha256:fbb77a75e529021e7c4a8d4e823d88ef4d23674a202be4f5addffc72cbb91430"},
|
|
1384
|
-
]
|
|
1385
|
-
mypy = [
|
|
1386
|
-
{file = "mypy-0.770-cp35-cp35m-macosx_10_6_x86_64.whl", hash = "sha256:a34b577cdf6313bf24755f7a0e3f3c326d5c1f4fe7422d1d06498eb25ad0c600"},
|
|
1387
|
-
{file = "mypy-0.770-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:86c857510a9b7c3104cf4cde1568f4921762c8f9842e987bc03ed4f160925754"},
|
|
1388
|
-
{file = "mypy-0.770-cp35-cp35m-win_amd64.whl", hash = "sha256:a8ffcd53cb5dfc131850851cc09f1c44689c2812d0beb954d8138d4f5fc17f65"},
|
|
1389
|
-
{file = "mypy-0.770-cp36-cp36m-macosx_10_6_x86_64.whl", hash = "sha256:7687f6455ec3ed7649d1ae574136835a4272b65b3ddcf01ab8704ac65616c5ce"},
|
|
1390
|
-
{file = "mypy-0.770-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:3beff56b453b6ef94ecb2996bea101a08f1f8a9771d3cbf4988a61e4d9973761"},
|
|
1391
|
-
{file = "mypy-0.770-cp36-cp36m-win_amd64.whl", hash = "sha256:15b948e1302682e3682f11f50208b726a246ab4e6c1b39f9264a8796bb416aa2"},
|
|
1392
|
-
{file = "mypy-0.770-cp37-cp37m-macosx_10_6_x86_64.whl", hash = "sha256:b90928f2d9eb2f33162405f32dde9f6dcead63a0971ca8a1b50eb4ca3e35ceb8"},
|
|
1393
|
-
{file = "mypy-0.770-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:c56ffe22faa2e51054c5f7a3bc70a370939c2ed4de308c690e7949230c995913"},
|
|
1394
|
-
{file = "mypy-0.770-cp37-cp37m-win_amd64.whl", hash = "sha256:8dfb69fbf9f3aeed18afffb15e319ca7f8da9642336348ddd6cab2713ddcf8f9"},
|
|
1395
|
-
{file = "mypy-0.770-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:219a3116ecd015f8dca7b5d2c366c973509dfb9a8fc97ef044a36e3da66144a1"},
|
|
1396
|
-
{file = "mypy-0.770-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:7ec45a70d40ede1ec7ad7f95b3c94c9cf4c186a32f6bacb1795b60abd2f9ef27"},
|
|
1397
|
-
{file = "mypy-0.770-cp38-cp38-win_amd64.whl", hash = "sha256:f91c7ae919bbc3f96cd5e5b2e786b2b108343d1d7972ea130f7de27fdd547cf3"},
|
|
1398
|
-
{file = "mypy-0.770-py3-none-any.whl", hash = "sha256:3b1fc683fb204c6b4403a1ef23f0b1fac8e4477091585e0c8c54cbdf7d7bb164"},
|
|
1399
|
-
{file = "mypy-0.770.tar.gz", hash = "sha256:8a627507ef9b307b46a1fea9513d5c98680ba09591253082b4c48697ba05a4ae"},
|
|
1400
|
-
]
|
|
1401
|
-
mypy-extensions = [
|
|
1402
|
-
{file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"},
|
|
1403
|
-
{file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"},
|
|
1404
|
-
]
|
|
1405
|
-
networkx = [
|
|
1406
|
-
{file = "networkx-2.4-py3-none-any.whl", hash = "sha256:cdfbf698749a5014bf2ed9db4a07a5295df1d3a53bf80bf3cbd61edf9df05fa1"},
|
|
1407
|
-
{file = "networkx-2.4.tar.gz", hash = "sha256:f8f4ff0b6f96e4f9b16af6b84622597b5334bf9cae8cf9b2e42e7985d5c95c64"},
|
|
1408
|
-
]
|
|
1409
|
-
nodeenv = [
|
|
1410
|
-
{file = "nodeenv-1.3.5-py2.py3-none-any.whl", hash = "sha256:5b2438f2e42af54ca968dd1b374d14a1194848955187b0e5e4be1f73813a5212"},
|
|
1411
|
-
]
|
|
1412
|
-
ordered-set = [
|
|
1413
|
-
{file = "ordered-set-4.0.1.tar.gz", hash = "sha256:a31008c57f9c9776b12eb8841b1f61d1e4d70dfbbe8875ccfa2403c54af3d51b"},
|
|
1414
|
-
]
|
|
1415
|
-
packaging = [
|
|
1416
|
-
{file = "packaging-20.4-py2.py3-none-any.whl", hash = "sha256:998416ba6962ae7fbd6596850b80e17859a5753ba17c32284f67bfff33784181"},
|
|
1417
|
-
{file = "packaging-20.4.tar.gz", hash = "sha256:4357f74f47b9c12db93624a82154e9b120fa8293699949152b22065d556079f8"},
|
|
1418
|
-
]
|
|
1419
|
-
pillow = [
|
|
1420
|
-
{file = "Pillow-7.1.2-cp35-cp35m-macosx_10_10_intel.whl", hash = "sha256:ae2b270f9a0b8822b98655cb3a59cdb1bd54a34807c6c56b76dd2e786c3b7db3"},
|
|
1421
|
-
{file = "Pillow-7.1.2-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:d23e2aa9b969cf9c26edfb4b56307792b8b374202810bd949effd1c6e11ebd6d"},
|
|
1422
|
-
{file = "Pillow-7.1.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:b532bcc2f008e96fd9241177ec580829dee817b090532f43e54074ecffdcd97f"},
|
|
1423
|
-
{file = "Pillow-7.1.2-cp35-cp35m-win32.whl", hash = "sha256:12e4bad6bddd8546a2f9771485c7e3d2b546b458ae8ff79621214119ac244523"},
|
|
1424
|
-
{file = "Pillow-7.1.2-cp35-cp35m-win_amd64.whl", hash = "sha256:9744350687459234867cbebfe9df8f35ef9e1538f3e729adbd8fde0761adb705"},
|
|
1425
|
-
{file = "Pillow-7.1.2-cp36-cp36m-macosx_10_10_x86_64.whl", hash = "sha256:f54be399340aa602066adb63a86a6a5d4f395adfdd9da2b9a0162ea808c7b276"},
|
|
1426
|
-
{file = "Pillow-7.1.2-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:1f694e28c169655c50bb89a3fa07f3b854d71eb47f50783621de813979ba87f3"},
|
|
1427
|
-
{file = "Pillow-7.1.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:f784aad988f12c80aacfa5b381ec21fd3f38f851720f652b9f33facc5101cf4d"},
|
|
1428
|
-
{file = "Pillow-7.1.2-cp36-cp36m-win32.whl", hash = "sha256:b37bb3bd35edf53125b0ff257822afa6962649995cbdfde2791ddb62b239f891"},
|
|
1429
|
-
{file = "Pillow-7.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:b67a6c47ed963c709ed24566daa3f95a18f07d3831334da570c71da53d97d088"},
|
|
1430
|
-
{file = "Pillow-7.1.2-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:eaa83729eab9c60884f362ada982d3a06beaa6cc8b084cf9f76cae7739481dfa"},
|
|
1431
|
-
{file = "Pillow-7.1.2-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:f46e0e024346e1474083c729d50de909974237c72daca05393ee32389dabe457"},
|
|
1432
|
-
{file = "Pillow-7.1.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:0e2a3bceb0fd4e0cb17192ae506d5f082b309ffe5fc370a5667959c9b2f85fa3"},
|
|
1433
|
-
{file = "Pillow-7.1.2-cp37-cp37m-win32.whl", hash = "sha256:ccc9ad2460eb5bee5642eaf75a0438d7f8887d484490d5117b98edd7f33118b7"},
|
|
1434
|
-
{file = "Pillow-7.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:b943e71c2065ade6fef223358e56c167fc6ce31c50bc7a02dd5c17ee4338e8ac"},
|
|
1435
|
-
{file = "Pillow-7.1.2-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:04766c4930c174b46fd72d450674612ab44cca977ebbcc2dde722c6933290107"},
|
|
1436
|
-
{file = "Pillow-7.1.2-cp38-cp38-manylinux1_i686.whl", hash = "sha256:f455efb7a98557412dc6f8e463c1faf1f1911ec2432059fa3e582b6000fc90e2"},
|
|
1437
|
-
{file = "Pillow-7.1.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:ee94fce8d003ac9fd206496f2707efe9eadcb278d94c271f129ab36aa7181344"},
|
|
1438
|
-
{file = "Pillow-7.1.2-cp38-cp38-win32.whl", hash = "sha256:4b02b9c27fad2054932e89f39703646d0c543f21d3cc5b8e05434215121c28cd"},
|
|
1439
|
-
{file = "Pillow-7.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:3d25dd8d688f7318dca6d8cd4f962a360ee40346c15893ae3b95c061cdbc4079"},
|
|
1440
|
-
{file = "Pillow-7.1.2-pp373-pypy36_pp73-win32.whl", hash = "sha256:0f01e63c34f0e1e2580cc0b24e86a5ccbbfa8830909a52ee17624c4193224cd9"},
|
|
1441
|
-
{file = "Pillow-7.1.2-py3.8-macosx-10.9-x86_64.egg", hash = "sha256:70e3e0d99a0dcda66283a185f80697a9b08806963c6149c8e6c5f452b2aa59c0"},
|
|
1442
|
-
{file = "Pillow-7.1.2.tar.gz", hash = "sha256:a0b49960110bc6ff5fead46013bcb8825d101026d466f3a4de3476defe0fb0dd"},
|
|
1443
|
-
]
|
|
1444
|
-
pixelmatch = [
|
|
1445
|
-
{file = "pixelmatch-0.2.1-py3-none-any.whl", hash = "sha256:627b3140d31f88c0cd62c44fded8075c9c552c96d3118f52a0c2b7be56f71d7f"},
|
|
1446
|
-
{file = "pixelmatch-0.2.1.tar.gz", hash = "sha256:7309d71bd1880165132b55070bc9edba501bba0229a724bbcf7d5c2b31f3eeae"},
|
|
1447
|
-
]
|
|
1448
|
-
pluggy = [
|
|
1449
|
-
{file = "pluggy-0.13.1-py2.py3-none-any.whl", hash = "sha256:966c145cd83c96502c3c3868f50408687b38434af77734af1e9ca461a4081d2d"},
|
|
1450
|
-
{file = "pluggy-0.13.1.tar.gz", hash = "sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0"},
|
|
1451
|
-
]
|
|
1452
|
-
pre-commit = [
|
|
1453
|
-
{file = "pre_commit-2.4.0-py2.py3-none-any.whl", hash = "sha256:5559e09afcac7808933951ffaf4ff9aac524f31efbc3f24d021540b6c579813c"},
|
|
1454
|
-
{file = "pre_commit-2.4.0.tar.gz", hash = "sha256:703e2e34cbe0eedb0d319eff9f7b83e2022bb5a3ab5289a6a8841441076514d0"},
|
|
1455
|
-
]
|
|
1456
|
-
py = [
|
|
1457
|
-
{file = "py-1.8.1-py2.py3-none-any.whl", hash = "sha256:c20fdd83a5dbc0af9efd622bee9a5564e278f6380fffcacc43ba6f43db2813b0"},
|
|
1458
|
-
{file = "py-1.8.1.tar.gz", hash = "sha256:5e27081401262157467ad6e7f851b7aa402c5852dbcb3dae06768434de5752aa"},
|
|
1459
|
-
]
|
|
1460
|
-
pycodestyle = [
|
|
1461
|
-
{file = "pycodestyle-2.6.0-py2.py3-none-any.whl", hash = "sha256:2295e7b2f6b5bd100585ebcb1f616591b652db8a741695b3d8f5d28bdc934367"},
|
|
1462
|
-
{file = "pycodestyle-2.6.0.tar.gz", hash = "sha256:c58a7d2815e0e8d7972bf1803331fb0152f867bd89adf8a01dfd55085434192e"},
|
|
1463
|
-
]
|
|
1464
|
-
pydocstyle = [
|
|
1465
|
-
{file = "pydocstyle-5.0.2-py3-none-any.whl", hash = "sha256:da7831660b7355307b32778c4a0dbfb137d89254ef31a2b2978f50fc0b4d7586"},
|
|
1466
|
-
{file = "pydocstyle-5.0.2.tar.gz", hash = "sha256:f4f5d210610c2d153fae39093d44224c17429e2ad7da12a8b419aba5c2f614b5"},
|
|
1467
|
-
]
|
|
1468
|
-
pyee = [
|
|
1469
|
-
{file = "pyee-7.0.2-py2.py3-none-any.whl", hash = "sha256:a0fee808414a4fc077d81be80dfe785879430b03101088747714c045292751c0"},
|
|
1470
|
-
{file = "pyee-7.0.2.tar.gz", hash = "sha256:c908d1ecb32918bbf7dbb895a093153b0ca1ed8f04fc067d98bd4c5917aeb3d8"},
|
|
1471
|
-
]
|
|
1472
|
-
pyflakes = [
|
|
1473
|
-
{file = "pyflakes-2.2.0-py2.py3-none-any.whl", hash = "sha256:0d94e0e05a19e57a99444b6ddcf9a6eb2e5c68d3ca1e98e90707af8152c90a92"},
|
|
1474
|
-
{file = "pyflakes-2.2.0.tar.gz", hash = "sha256:35b2d75ee967ea93b55750aa9edbbf72813e06a66ba54438df2cfac9e3c27fc8"},
|
|
1475
|
-
]
|
|
1476
|
-
pygments = [
|
|
1477
|
-
{file = "Pygments-2.6.1-py3-none-any.whl", hash = "sha256:ff7a40b4860b727ab48fad6360eb351cc1b33cbf9b15a0f689ca5353e9463324"},
|
|
1478
|
-
{file = "Pygments-2.6.1.tar.gz", hash = "sha256:647344a061c249a3b74e230c739f434d7ea4d8b1d5f3721bc0f3558049b38f44"},
|
|
1479
|
-
]
|
|
1480
|
-
pyinotify = [
|
|
1481
|
-
{file = "pyinotify-0.9.6.tar.gz", hash = "sha256:9c998a5d7606ca835065cdabc013ae6c66eb9ea76a00a1e3bc6e0cfe2b4f71f4"},
|
|
1482
|
-
]
|
|
1483
|
-
pylint = [
|
|
1484
|
-
{file = "pylint-2.5.2-py3-none-any.whl", hash = "sha256:dd506acce0427e9e08fb87274bcaa953d38b50a58207170dbf5b36cf3e16957b"},
|
|
1485
|
-
{file = "pylint-2.5.2.tar.gz", hash = "sha256:b95e31850f3af163c2283ed40432f053acbc8fc6eba6a069cb518d9dbf71848c"},
|
|
1486
|
-
]
|
|
1487
|
-
pyparsing = [
|
|
1488
|
-
{file = "pyparsing-2.4.7-py2.py3-none-any.whl", hash = "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b"},
|
|
1489
|
-
{file = "pyparsing-2.4.7.tar.gz", hash = "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1"},
|
|
1490
|
-
]
|
|
1491
|
-
pytest = [
|
|
1492
|
-
{file = "pytest-5.4.2-py3-none-any.whl", hash = "sha256:95c710d0a72d91c13fae35dce195633c929c3792f54125919847fdcdf7caa0d3"},
|
|
1493
|
-
{file = "pytest-5.4.2.tar.gz", hash = "sha256:eb2b5e935f6a019317e455b6da83dd8650ac9ffd2ee73a7b657a30873d67a698"},
|
|
1494
|
-
]
|
|
1495
|
-
pytest-cov = [
|
|
1496
|
-
{file = "pytest-cov-2.9.0.tar.gz", hash = "sha256:b6a814b8ed6247bd81ff47f038511b57fe1ce7f4cc25b9106f1a4b106f1d9322"},
|
|
1497
|
-
{file = "pytest_cov-2.9.0-py2.py3-none-any.whl", hash = "sha256:c87dfd8465d865655a8213859f1b4749b43448b5fae465cb981e16d52a811424"},
|
|
1498
|
-
]
|
|
1499
|
-
pytest-forked = [
|
|
1500
|
-
{file = "pytest-forked-1.1.3.tar.gz", hash = "sha256:1805699ed9c9e60cb7a8179b8d4fa2b8898098e82d229b0825d8095f0f261100"},
|
|
1501
|
-
{file = "pytest_forked-1.1.3-py2.py3-none-any.whl", hash = "sha256:1ae25dba8ee2e56fb47311c9638f9e58552691da87e82d25b0ce0e4bf52b7d87"},
|
|
1502
|
-
]
|
|
1503
|
-
pytest-timeout = [
|
|
1504
|
-
{file = "pytest-timeout-1.3.4.tar.gz", hash = "sha256:80faa19cd245a42b87a51699d640c00d937c02b749052bfca6bae8bdbe12c48e"},
|
|
1505
|
-
{file = "pytest_timeout-1.3.4-py2.py3-none-any.whl", hash = "sha256:95ca727d4a1dace6ec5f0534d2940b8417ff8b782f7eef0ea09240bdd94d95c2"},
|
|
1506
|
-
]
|
|
1507
|
-
pytest-xdist = [
|
|
1508
|
-
{file = "pytest-xdist-1.32.0.tar.gz", hash = "sha256:1d4166dcac69adb38eeaedb88c8fada8588348258a3492ab49ba9161f2971129"},
|
|
1509
|
-
{file = "pytest_xdist-1.32.0-py2.py3-none-any.whl", hash = "sha256:ba5ec9fde3410bd9a116ff7e4f26c92e02fa3d27975ef3ad03f330b3d4b54e91"},
|
|
1510
|
-
]
|
|
1511
|
-
pytz = [
|
|
1512
|
-
{file = "pytz-2020.1-py2.py3-none-any.whl", hash = "sha256:a494d53b6d39c3c6e44c3bec237336e14305e4f29bbf800b599253057fbb79ed"},
|
|
1513
|
-
{file = "pytz-2020.1.tar.gz", hash = "sha256:c35965d010ce31b23eeb663ed3cc8c906275d6be1a34393a1d73a41febf4a048"},
|
|
1514
|
-
]
|
|
1515
|
-
pyyaml = [
|
|
1516
|
-
{file = "PyYAML-5.3.1-cp27-cp27m-win32.whl", hash = "sha256:74809a57b329d6cc0fdccee6318f44b9b8649961fa73144a98735b0aaf029f1f"},
|
|
1517
|
-
{file = "PyYAML-5.3.1-cp27-cp27m-win_amd64.whl", hash = "sha256:240097ff019d7c70a4922b6869d8a86407758333f02203e0fc6ff79c5dcede76"},
|
|
1518
|
-
{file = "PyYAML-5.3.1-cp35-cp35m-win32.whl", hash = "sha256:4f4b913ca1a7319b33cfb1369e91e50354d6f07a135f3b901aca02aa95940bd2"},
|
|
1519
|
-
{file = "PyYAML-5.3.1-cp35-cp35m-win_amd64.whl", hash = "sha256:cc8955cfbfc7a115fa81d85284ee61147059a753344bc51098f3ccd69b0d7e0c"},
|
|
1520
|
-
{file = "PyYAML-5.3.1-cp36-cp36m-win32.whl", hash = "sha256:7739fc0fa8205b3ee8808aea45e968bc90082c10aef6ea95e855e10abf4a37b2"},
|
|
1521
|
-
{file = "PyYAML-5.3.1-cp36-cp36m-win_amd64.whl", hash = "sha256:69f00dca373f240f842b2931fb2c7e14ddbacd1397d57157a9b005a6a9942648"},
|
|
1522
|
-
{file = "PyYAML-5.3.1-cp37-cp37m-win32.whl", hash = "sha256:d13155f591e6fcc1ec3b30685d50bf0711574e2c0dfffd7644babf8b5102ca1a"},
|
|
1523
|
-
{file = "PyYAML-5.3.1-cp37-cp37m-win_amd64.whl", hash = "sha256:73f099454b799e05e5ab51423c7bcf361c58d3206fa7b0d555426b1f4d9a3eaf"},
|
|
1524
|
-
{file = "PyYAML-5.3.1-cp38-cp38-win32.whl", hash = "sha256:06a0d7ba600ce0b2d2fe2e78453a470b5a6e000a985dd4a4e54e436cc36b0e97"},
|
|
1525
|
-
{file = "PyYAML-5.3.1-cp38-cp38-win_amd64.whl", hash = "sha256:95f71d2af0ff4227885f7a6605c37fd53d3a106fcab511b8860ecca9fcf400ee"},
|
|
1526
|
-
{file = "PyYAML-5.3.1.tar.gz", hash = "sha256:b8eac752c5e14d3eca0e6dd9199cd627518cb5ec06add0de9d32baeee6fe645d"},
|
|
1527
|
-
]
|
|
1528
|
-
readme-renderer = [
|
|
1529
|
-
{file = "readme_renderer-24.0-py2.py3-none-any.whl", hash = "sha256:c8532b79afc0375a85f10433eca157d6b50f7d6990f337fa498c96cd4bfc203d"},
|
|
1530
|
-
{file = "readme_renderer-24.0.tar.gz", hash = "sha256:bb16f55b259f27f75f640acf5e00cf897845a8b3e4731b5c1a436e4b8529202f"},
|
|
1531
|
-
]
|
|
1532
|
-
requests = [
|
|
1533
|
-
{file = "requests-2.23.0-py2.py3-none-any.whl", hash = "sha256:43999036bfa82904b6af1d99e4882b560e5e2c68e5c4b0aa03b655f3d7d73fee"},
|
|
1534
|
-
{file = "requests-2.23.0.tar.gz", hash = "sha256:b3f43d496c6daba4493e7c431722aeb7dbc6288f52a6e04e7b6023b0247817e6"},
|
|
1535
|
-
]
|
|
1536
|
-
six = [
|
|
1537
|
-
{file = "six-1.15.0-py2.py3-none-any.whl", hash = "sha256:8b74bedcbbbaca38ff6d7491d76f2b06b3592611af620f8426e82dddb04a5ced"},
|
|
1538
|
-
{file = "six-1.15.0.tar.gz", hash = "sha256:30639c035cdb23534cd4aa2dd52c3bf48f06e5f4a941509c8bafd8ce11080259"},
|
|
1539
|
-
]
|
|
1540
|
-
snowballstemmer = [
|
|
1541
|
-
{file = "snowballstemmer-2.0.0-py2.py3-none-any.whl", hash = "sha256:209f257d7533fdb3cb73bdbd24f436239ca3b2fa67d56f6ff88e86be08cc5ef0"},
|
|
1542
|
-
{file = "snowballstemmer-2.0.0.tar.gz", hash = "sha256:df3bac3df4c2c01363f3dd2cfa78cce2840a79b9f1c2d2de9ce8d31683992f52"},
|
|
1543
|
-
]
|
|
1544
|
-
sphinx = [
|
|
1545
|
-
{file = "Sphinx-2.4.4-py3-none-any.whl", hash = "sha256:fc312670b56cb54920d6cc2ced455a22a547910de10b3142276495ced49231cb"},
|
|
1546
|
-
{file = "Sphinx-2.4.4.tar.gz", hash = "sha256:b4c750d546ab6d7e05bdff6ac24db8ae3e8b8253a3569b754e445110a0a12b66"},
|
|
1547
|
-
]
|
|
1548
|
-
sphinxcontrib-applehelp = [
|
|
1549
|
-
{file = "sphinxcontrib-applehelp-1.0.2.tar.gz", hash = "sha256:a072735ec80e7675e3f432fcae8610ecf509c5f1869d17e2eecff44389cdbc58"},
|
|
1550
|
-
{file = "sphinxcontrib_applehelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:806111e5e962be97c29ec4c1e7fe277bfd19e9652fb1a4392105b43e01af885a"},
|
|
1551
|
-
]
|
|
1552
|
-
sphinxcontrib-asyncio = [
|
|
1553
|
-
{file = "sphinxcontrib-asyncio-0.2.0.tar.gz", hash = "sha256:96627b1ec4eba08d09ad577ff9416c131910333ef37a2c82a2716e59646739f0"},
|
|
1554
|
-
]
|
|
1555
|
-
sphinxcontrib-devhelp = [
|
|
1556
|
-
{file = "sphinxcontrib-devhelp-1.0.2.tar.gz", hash = "sha256:ff7f1afa7b9642e7060379360a67e9c41e8f3121f2ce9164266f61b9f4b338e4"},
|
|
1557
|
-
{file = "sphinxcontrib_devhelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:8165223f9a335cc1af7ffe1ed31d2871f325254c0423bc0c4c7cd1c1e4734a2e"},
|
|
1558
|
-
]
|
|
1559
|
-
sphinxcontrib-htmlhelp = [
|
|
1560
|
-
{file = "sphinxcontrib-htmlhelp-1.0.3.tar.gz", hash = "sha256:e8f5bb7e31b2dbb25b9cc435c8ab7a79787ebf7f906155729338f3156d93659b"},
|
|
1561
|
-
{file = "sphinxcontrib_htmlhelp-1.0.3-py2.py3-none-any.whl", hash = "sha256:3c0bc24a2c41e340ac37c85ced6dafc879ab485c095b1d65d2461ac2f7cca86f"},
|
|
1562
|
-
]
|
|
1563
|
-
sphinxcontrib-jsmath = [
|
|
1564
|
-
{file = "sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8"},
|
|
1565
|
-
{file = "sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178"},
|
|
1566
|
-
]
|
|
1567
|
-
sphinxcontrib-qthelp = [
|
|
1568
|
-
{file = "sphinxcontrib-qthelp-1.0.3.tar.gz", hash = "sha256:4c33767ee058b70dba89a6fc5c1892c0d57a54be67ddd3e7875a18d14cba5a72"},
|
|
1569
|
-
{file = "sphinxcontrib_qthelp-1.0.3-py2.py3-none-any.whl", hash = "sha256:bd9fc24bcb748a8d51fd4ecaade681350aa63009a347a8c14e637895444dfab6"},
|
|
1570
|
-
]
|
|
1571
|
-
sphinxcontrib-serializinghtml = [
|
|
1572
|
-
{file = "sphinxcontrib-serializinghtml-1.1.4.tar.gz", hash = "sha256:eaa0eccc86e982a9b939b2b82d12cc5d013385ba5eadcc7e4fed23f4405f77bc"},
|
|
1573
|
-
{file = "sphinxcontrib_serializinghtml-1.1.4-py2.py3-none-any.whl", hash = "sha256:f242a81d423f59617a8e5cf16f5d4d74e28ee9a66f9e5b637a18082991db5a9a"},
|
|
1574
|
-
]
|
|
1575
|
-
syncer = [
|
|
1576
|
-
{file = "syncer-1.3.0.tar.gz", hash = "sha256:6eb756f345388e08763f9695e7b5071b7657f0a7e809e486e3f9ca3fb4cd4d2c"},
|
|
1577
|
-
]
|
|
1578
|
-
toml = [
|
|
1579
|
-
{file = "toml-0.10.1-py2.py3-none-any.whl", hash = "sha256:bda89d5935c2eac546d648028b9901107a595863cb36bae0c73ac804a9b4ce88"},
|
|
1580
|
-
{file = "toml-0.10.1.tar.gz", hash = "sha256:926b612be1e5ce0634a2ca03470f95169cf16f939018233a670519cb4ac58b0f"},
|
|
1581
|
-
]
|
|
1582
|
-
tornado = [
|
|
1583
|
-
{file = "tornado-6.0.4-cp35-cp35m-win32.whl", hash = "sha256:5217e601700f24e966ddab689f90b7ea4bd91ff3357c3600fa1045e26d68e55d"},
|
|
1584
|
-
{file = "tornado-6.0.4-cp35-cp35m-win_amd64.whl", hash = "sha256:c98232a3ac391f5faea6821b53db8db461157baa788f5d6222a193e9456e1740"},
|
|
1585
|
-
{file = "tornado-6.0.4-cp36-cp36m-win32.whl", hash = "sha256:5f6a07e62e799be5d2330e68d808c8ac41d4a259b9cea61da4101b83cb5dc673"},
|
|
1586
|
-
{file = "tornado-6.0.4-cp36-cp36m-win_amd64.whl", hash = "sha256:c952975c8ba74f546ae6de2e226ab3cc3cc11ae47baf607459a6728585bb542a"},
|
|
1587
|
-
{file = "tornado-6.0.4-cp37-cp37m-win32.whl", hash = "sha256:2c027eb2a393d964b22b5c154d1a23a5f8727db6fda837118a776b29e2b8ebc6"},
|
|
1588
|
-
{file = "tornado-6.0.4-cp37-cp37m-win_amd64.whl", hash = "sha256:5618f72e947533832cbc3dec54e1dffc1747a5cb17d1fd91577ed14fa0dc081b"},
|
|
1589
|
-
{file = "tornado-6.0.4-cp38-cp38-win32.whl", hash = "sha256:22aed82c2ea340c3771e3babc5ef220272f6fd06b5108a53b4976d0d722bcd52"},
|
|
1590
|
-
{file = "tornado-6.0.4-cp38-cp38-win_amd64.whl", hash = "sha256:c58d56003daf1b616336781b26d184023ea4af13ae143d9dda65e31e534940b9"},
|
|
1591
|
-
{file = "tornado-6.0.4.tar.gz", hash = "sha256:0fe2d45ba43b00a41cd73f8be321a44936dc1aba233dee979f17a042b83eb6dc"},
|
|
1592
|
-
]
|
|
1593
|
-
tox = [
|
|
1594
|
-
{file = "tox-3.15.1-py2.py3-none-any.whl", hash = "sha256:322dfdf007d7d53323f767badcb068a5cfa7c44d8aabb698d131b28cf44e62c4"},
|
|
1595
|
-
{file = "tox-3.15.1.tar.gz", hash = "sha256:8c9ad9b48659d291c5bc78bcabaa4d680d627687154b812fa52baedaa94f9f83"},
|
|
1596
|
-
]
|
|
1597
|
-
tqdm = [
|
|
1598
|
-
{file = "tqdm-4.46.0-py2.py3-none-any.whl", hash = "sha256:acdafb20f51637ca3954150d0405ff1a7edde0ff19e38fb99a80a66210d2a28f"},
|
|
1599
|
-
{file = "tqdm-4.46.0.tar.gz", hash = "sha256:4733c4a10d0f2a4d098d801464bdaf5240c7dadd2a7fde4ee93b0a0efd9fb25e"},
|
|
1600
|
-
]
|
|
1601
|
-
typed-ast = [
|
|
1602
|
-
{file = "typed_ast-1.4.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:73d785a950fc82dd2a25897d525d003f6378d1cb23ab305578394694202a58c3"},
|
|
1603
|
-
{file = "typed_ast-1.4.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:aaee9905aee35ba5905cfb3c62f3e83b3bec7b39413f0a7f19be4e547ea01ebb"},
|
|
1604
|
-
{file = "typed_ast-1.4.1-cp35-cp35m-win32.whl", hash = "sha256:0c2c07682d61a629b68433afb159376e24e5b2fd4641d35424e462169c0a7919"},
|
|
1605
|
-
{file = "typed_ast-1.4.1-cp35-cp35m-win_amd64.whl", hash = "sha256:4083861b0aa07990b619bd7ddc365eb7fa4b817e99cf5f8d9cf21a42780f6e01"},
|
|
1606
|
-
{file = "typed_ast-1.4.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:269151951236b0f9a6f04015a9004084a5ab0d5f19b57de779f908621e7d8b75"},
|
|
1607
|
-
{file = "typed_ast-1.4.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:24995c843eb0ad11a4527b026b4dde3da70e1f2d8806c99b7b4a7cf491612652"},
|
|
1608
|
-
{file = "typed_ast-1.4.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:fe460b922ec15dd205595c9b5b99e2f056fd98ae8f9f56b888e7a17dc2b757e7"},
|
|
1609
|
-
{file = "typed_ast-1.4.1-cp36-cp36m-win32.whl", hash = "sha256:4e3e5da80ccbebfff202a67bf900d081906c358ccc3d5e3c8aea42fdfdfd51c1"},
|
|
1610
|
-
{file = "typed_ast-1.4.1-cp36-cp36m-win_amd64.whl", hash = "sha256:249862707802d40f7f29f6e1aad8d84b5aa9e44552d2cc17384b209f091276aa"},
|
|
1611
|
-
{file = "typed_ast-1.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8ce678dbaf790dbdb3eba24056d5364fb45944f33553dd5869b7580cdbb83614"},
|
|
1612
|
-
{file = "typed_ast-1.4.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:c9e348e02e4d2b4a8b2eedb48210430658df6951fa484e59de33ff773fbd4b41"},
|
|
1613
|
-
{file = "typed_ast-1.4.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:bcd3b13b56ea479b3650b82cabd6b5343a625b0ced5429e4ccad28a8973f301b"},
|
|
1614
|
-
{file = "typed_ast-1.4.1-cp37-cp37m-win32.whl", hash = "sha256:d5d33e9e7af3b34a40dc05f498939f0ebf187f07c385fd58d591c533ad8562fe"},
|
|
1615
|
-
{file = "typed_ast-1.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:0666aa36131496aed8f7be0410ff974562ab7eeac11ef351def9ea6fa28f6355"},
|
|
1616
|
-
{file = "typed_ast-1.4.1-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:d205b1b46085271b4e15f670058ce182bd1199e56b317bf2ec004b6a44f911f6"},
|
|
1617
|
-
{file = "typed_ast-1.4.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:6daac9731f172c2a22ade6ed0c00197ee7cc1221aa84cfdf9c31defeb059a907"},
|
|
1618
|
-
{file = "typed_ast-1.4.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:498b0f36cc7054c1fead3d7fc59d2150f4d5c6c56ba7fb150c013fbc683a8d2d"},
|
|
1619
|
-
{file = "typed_ast-1.4.1-cp38-cp38-win32.whl", hash = "sha256:715ff2f2df46121071622063fc7543d9b1fd19ebfc4f5c8895af64a77a8c852c"},
|
|
1620
|
-
{file = "typed_ast-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:fc0fea399acb12edbf8a628ba8d2312f583bdbdb3335635db062fa98cf71fca4"},
|
|
1621
|
-
{file = "typed_ast-1.4.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:d43943ef777f9a1c42bf4e552ba23ac77a6351de620aa9acf64ad54933ad4d34"},
|
|
1622
|
-
{file = "typed_ast-1.4.1.tar.gz", hash = "sha256:8c8aaad94455178e3187ab22c8b01a3837f8ee50e09cf31f1ba129eb293ec30b"},
|
|
1623
|
-
]
|
|
1624
|
-
typing-extensions = [
|
|
1625
|
-
{file = "typing_extensions-3.7.4.2-py2-none-any.whl", hash = "sha256:f8d2bd89d25bc39dabe7d23df520442fa1d8969b82544370e03d88b5a591c392"},
|
|
1626
|
-
{file = "typing_extensions-3.7.4.2-py3-none-any.whl", hash = "sha256:6e95524d8a547a91e08f404ae485bbb71962de46967e1b71a0cb89af24e761c5"},
|
|
1627
|
-
{file = "typing_extensions-3.7.4.2.tar.gz", hash = "sha256:79ee589a3caca649a9bfd2a8de4709837400dfa00b6cc81962a1e6a1815969ae"},
|
|
1628
|
-
]
|
|
1629
|
-
typing-inspect = [
|
|
1630
|
-
{file = "typing_inspect-0.5.0-py2-none-any.whl", hash = "sha256:75c97b7854426a129f3184c68588db29091ff58e6908ed520add1d52fc44df6e"},
|
|
1631
|
-
{file = "typing_inspect-0.5.0-py3-none-any.whl", hash = "sha256:c6ed1cd34860857c53c146a6704a96da12e1661087828ce350f34addc6e5eee3"},
|
|
1632
|
-
{file = "typing_inspect-0.5.0.tar.gz", hash = "sha256:811b44f92e780b90cfe7bac94249a4fae87cfaa9b40312765489255045231d9c"},
|
|
1633
|
-
]
|
|
1634
|
-
urllib3 = [
|
|
1635
|
-
{file = "urllib3-1.25.9-py2.py3-none-any.whl", hash = "sha256:88206b0eb87e6d677d424843ac5209e3fb9d0190d0ee169599165ec25e9d9115"},
|
|
1636
|
-
{file = "urllib3-1.25.9.tar.gz", hash = "sha256:3018294ebefce6572a474f0604c2021e33b3fd8006ecd11d62107a5d2a963527"},
|
|
1637
|
-
]
|
|
1638
|
-
virtualenv = [
|
|
1639
|
-
{file = "virtualenv-20.0.21-py2.py3-none-any.whl", hash = "sha256:a730548b27366c5e6cbdf6f97406d861cccece2e22275e8e1a757aeff5e00c70"},
|
|
1640
|
-
{file = "virtualenv-20.0.21.tar.gz", hash = "sha256:a116629d4e7f4d03433b8afa27f43deba09d48bc48f5ecefa4f015a178efb6cf"},
|
|
1641
|
-
]
|
|
1642
|
-
wcwidth = [
|
|
1643
|
-
{file = "wcwidth-0.1.9-py2.py3-none-any.whl", hash = "sha256:cafe2186b3c009a04067022ce1dcd79cb38d8d65ee4f4791b8888d6599d1bbe1"},
|
|
1644
|
-
{file = "wcwidth-0.1.9.tar.gz", hash = "sha256:ee73862862a156bf77ff92b09034fc4825dd3af9cf81bc5b360668d425f3c5f1"},
|
|
1645
|
-
]
|
|
1646
|
-
webencodings = [
|
|
1647
|
-
{file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"},
|
|
1648
|
-
{file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"},
|
|
1649
|
-
]
|
|
1650
|
-
websockets = [
|
|
1651
|
-
{file = "websockets-8.1-cp36-cp36m-macosx_10_6_intel.whl", hash = "sha256:3762791ab8b38948f0c4d281c8b2ddfa99b7e510e46bd8dfa942a5fff621068c"},
|
|
1652
|
-
{file = "websockets-8.1-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:3db87421956f1b0779a7564915875ba774295cc86e81bc671631379371af1170"},
|
|
1653
|
-
{file = "websockets-8.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:4f9f7d28ce1d8f1295717c2c25b732c2bc0645db3215cf757551c392177d7cb8"},
|
|
1654
|
-
{file = "websockets-8.1-cp36-cp36m-manylinux2010_i686.whl", hash = "sha256:295359a2cc78736737dd88c343cd0747546b2174b5e1adc223824bcaf3e164cb"},
|
|
1655
|
-
{file = "websockets-8.1-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:1d3f1bf059d04a4e0eb4985a887d49195e15ebabc42364f4eb564b1d065793f5"},
|
|
1656
|
-
{file = "websockets-8.1-cp36-cp36m-win32.whl", hash = "sha256:2db62a9142e88535038a6bcfea70ef9447696ea77891aebb730a333a51ed559a"},
|
|
1657
|
-
{file = "websockets-8.1-cp36-cp36m-win_amd64.whl", hash = "sha256:0e4fb4de42701340bd2353bb2eee45314651caa6ccee80dbd5f5d5978888fed5"},
|
|
1658
|
-
{file = "websockets-8.1-cp37-cp37m-macosx_10_6_intel.whl", hash = "sha256:9b248ba3dd8a03b1a10b19efe7d4f7fa41d158fdaa95e2cf65af5a7b95a4f989"},
|
|
1659
|
-
{file = "websockets-8.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:ce85b06a10fc65e6143518b96d3dca27b081a740bae261c2fb20375801a9d56d"},
|
|
1660
|
-
{file = "websockets-8.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:965889d9f0e2a75edd81a07592d0ced54daa5b0785f57dc429c378edbcffe779"},
|
|
1661
|
-
{file = "websockets-8.1-cp37-cp37m-manylinux2010_i686.whl", hash = "sha256:751a556205d8245ff94aeef23546a1113b1dd4f6e4d102ded66c39b99c2ce6c8"},
|
|
1662
|
-
{file = "websockets-8.1-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:3ef56fcc7b1ff90de46ccd5a687bbd13a3180132268c4254fc0fa44ecf4fc422"},
|
|
1663
|
-
{file = "websockets-8.1-cp37-cp37m-win32.whl", hash = "sha256:7ff46d441db78241f4c6c27b3868c9ae71473fe03341340d2dfdbe8d79310acc"},
|
|
1664
|
-
{file = "websockets-8.1-cp37-cp37m-win_amd64.whl", hash = "sha256:20891f0dddade307ffddf593c733a3fdb6b83e6f9eef85908113e628fa5a8308"},
|
|
1665
|
-
{file = "websockets-8.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c1ec8db4fac31850286b7cd3b9c0e1b944204668b8eb721674916d4e28744092"},
|
|
1666
|
-
{file = "websockets-8.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:5c01fd846263a75bc8a2b9542606927cfad57e7282965d96b93c387622487485"},
|
|
1667
|
-
{file = "websockets-8.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:9bef37ee224e104a413f0780e29adb3e514a5b698aabe0d969a6ba426b8435d1"},
|
|
1668
|
-
{file = "websockets-8.1-cp38-cp38-manylinux2010_i686.whl", hash = "sha256:d705f8aeecdf3262379644e4b55107a3b55860eb812b673b28d0fbc347a60c55"},
|
|
1669
|
-
{file = "websockets-8.1-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:c8a116feafdb1f84607cb3b14aa1418424ae71fee131642fc568d21423b51824"},
|
|
1670
|
-
{file = "websockets-8.1-cp38-cp38-win32.whl", hash = "sha256:e898a0863421650f0bebac8ba40840fc02258ef4714cb7e1fd76b6a6354bda36"},
|
|
1671
|
-
{file = "websockets-8.1-cp38-cp38-win_amd64.whl", hash = "sha256:f8a7bff6e8664afc4e6c28b983845c5bc14965030e3fb98789734d416af77c4b"},
|
|
1672
|
-
{file = "websockets-8.1.tar.gz", hash = "sha256:5c65d2da8c6bce0fca2528f69f44b2f977e06954c8512a952222cea50dad430f"},
|
|
1673
|
-
]
|
|
1674
|
-
wrapt = [
|
|
1675
|
-
{file = "wrapt-1.12.1.tar.gz", hash = "sha256:b62ffa81fb85f4332a4f609cab4ac40709470da05643a082ec1eb88e6d9b97d7"},
|
|
1676
|
-
]
|
|
1677
|
-
yarl = [
|
|
1678
|
-
{file = "yarl-1.4.2-cp35-cp35m-macosx_10_13_x86_64.whl", hash = "sha256:3ce3d4f7c6b69c4e4f0704b32eca8123b9c58ae91af740481aa57d7857b5e41b"},
|
|
1679
|
-
{file = "yarl-1.4.2-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:a4844ebb2be14768f7994f2017f70aca39d658a96c786211be5ddbe1c68794c1"},
|
|
1680
|
-
{file = "yarl-1.4.2-cp35-cp35m-win32.whl", hash = "sha256:d8cdee92bc930d8b09d8bd2043cedd544d9c8bd7436a77678dd602467a993080"},
|
|
1681
|
-
{file = "yarl-1.4.2-cp35-cp35m-win_amd64.whl", hash = "sha256:c2b509ac3d4b988ae8769901c66345425e361d518aecbe4acbfc2567e416626a"},
|
|
1682
|
-
{file = "yarl-1.4.2-cp36-cp36m-macosx_10_13_x86_64.whl", hash = "sha256:308b98b0c8cd1dfef1a0311dc5e38ae8f9b58349226aa0533f15a16717ad702f"},
|
|
1683
|
-
{file = "yarl-1.4.2-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:944494be42fa630134bf907714d40207e646fd5a94423c90d5b514f7b0713fea"},
|
|
1684
|
-
{file = "yarl-1.4.2-cp36-cp36m-win32.whl", hash = "sha256:5b10eb0e7f044cf0b035112446b26a3a2946bca9d7d7edb5e54a2ad2f6652abb"},
|
|
1685
|
-
{file = "yarl-1.4.2-cp36-cp36m-win_amd64.whl", hash = "sha256:a161de7e50224e8e3de6e184707476b5a989037dcb24292b391a3d66ff158e70"},
|
|
1686
|
-
{file = "yarl-1.4.2-cp37-cp37m-macosx_10_13_x86_64.whl", hash = "sha256:26d7c90cb04dee1665282a5d1a998defc1a9e012fdca0f33396f81508f49696d"},
|
|
1687
|
-
{file = "yarl-1.4.2-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:0c2ab325d33f1b824734b3ef51d4d54a54e0e7a23d13b86974507602334c2cce"},
|
|
1688
|
-
{file = "yarl-1.4.2-cp37-cp37m-win32.whl", hash = "sha256:e15199cdb423316e15f108f51249e44eb156ae5dba232cb73be555324a1d49c2"},
|
|
1689
|
-
{file = "yarl-1.4.2-cp37-cp37m-win_amd64.whl", hash = "sha256:2098a4b4b9d75ee352807a95cdf5f10180db903bc5b7270715c6bbe2551f64ce"},
|
|
1690
|
-
{file = "yarl-1.4.2-cp38-cp38-macosx_10_13_x86_64.whl", hash = "sha256:c9959d49a77b0e07559e579f38b2f3711c2b8716b8410b320bf9713013215a1b"},
|
|
1691
|
-
{file = "yarl-1.4.2-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:25e66e5e2007c7a39541ca13b559cd8ebc2ad8fe00ea94a2aad28a9b1e44e5ae"},
|
|
1692
|
-
{file = "yarl-1.4.2-cp38-cp38-win32.whl", hash = "sha256:6faa19d3824c21bcbfdfce5171e193c8b4ddafdf0ac3f129ccf0cdfcb083e462"},
|
|
1693
|
-
{file = "yarl-1.4.2-cp38-cp38-win_amd64.whl", hash = "sha256:0ca2f395591bbd85ddd50a82eb1fde9c1066fafe888c5c7cc1d810cf03fd3cc6"},
|
|
1694
|
-
{file = "yarl-1.4.2.tar.gz", hash = "sha256:58cd9c469eced558cd81aa3f484b2924e8897049e06889e8ff2510435b7ef74b"},
|
|
1695
|
-
]
|
|
1696
|
-
zipp = [
|
|
1697
|
-
{file = "zipp-3.1.0-py3-none-any.whl", hash = "sha256:aa36550ff0c0b7ef7fa639055d797116ee891440eac1a56f378e2d3179e0320b"},
|
|
1698
|
-
{file = "zipp-3.1.0.tar.gz", hash = "sha256:c599e4d75c98f6798c509911d08a22e6c021d074469042177c8c86fb92eefd96"},
|
|
1699
|
-
]
|