Nidhal Baccouri commited on
Commit
0f1fdfa
·
2 Parent(s): d601909 1a85d8e

Merge branch 'master' of github.com:nidhaloff/deep-translator

Browse files
.github/workflows/production-tests.yml CHANGED
@@ -20,20 +20,13 @@ jobs:
20
  python-version: ${{ matrix.python-version }}
21
 
22
  - name: Install poetry
23
- run: curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3
24
 
25
- - name: Set up cache
26
- uses: actions/[email protected]
27
- with:
28
- path: .venv
29
- key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
30
  - name: Install dependencies
31
  run: |
32
- source "$HOME/.poetry/env"
33
  poetry config virtualenvs.in-project true
34
  poetry install
35
 
36
  - name: Run tests
37
  run: |
38
- source "$HOME/.poetry/env"
39
  poetry run pytest
 
20
  python-version: ${{ matrix.python-version }}
21
 
22
  - name: Install poetry
23
+ run: curl -sSL https://install.python-poetry.org | python3 -
24
 
 
 
 
 
 
25
  - name: Install dependencies
26
  run: |
 
27
  poetry config virtualenvs.in-project true
28
  poetry install
29
 
30
  - name: Run tests
31
  run: |
 
32
  poetry run pytest
.github/workflows/test.yml CHANGED
@@ -17,20 +17,25 @@ jobs:
17
  python-version: ${{ matrix.python-version }}
18
 
19
  - name: Install poetry
20
- run: curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3
21
 
22
  - name: Set up cache
23
  uses: actions/[email protected]
24
  with:
25
  path: .venv
26
  key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
 
 
 
 
 
 
 
27
  - name: Install dependencies
28
  run: |
29
- source "$HOME/.poetry/env"
30
  poetry config virtualenvs.in-project true
31
  poetry install
32
 
33
  - name: Run tests
34
  run: |
35
- source "$HOME/.poetry/env"
36
  poetry run pytest
 
17
  python-version: ${{ matrix.python-version }}
18
 
19
  - name: Install poetry
20
+ run: curl -sSL https://install.python-poetry.org | python3 -
21
 
22
  - name: Set up cache
23
  uses: actions/[email protected]
24
  with:
25
  path: .venv
26
  key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
27
+
28
+ - name: Check poetry config
29
+ run: |
30
+ echo $HOME
31
+ ls $HOME -a
32
+ poetry config --list
33
+
34
  - name: Install dependencies
35
  run: |
 
36
  poetry config virtualenvs.in-project true
37
  poetry install
38
 
39
  - name: Run tests
40
  run: |
 
41
  poetry run pytest
poetry.lock CHANGED
@@ -8,7 +8,7 @@ python-versions = "*"
8
 
9
  [[package]]
10
  name = "atomicwrites"
11
- version = "1.4.0"
12
  description = "Atomic file writes."
13
  category = "dev"
14
  optional = false
@@ -16,36 +16,36 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
16
 
17
  [[package]]
18
  name = "attrs"
19
- version = "21.4.0"
20
  description = "Classes Without Boilerplate"
21
  category = "dev"
22
  optional = false
23
- python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
24
 
25
  [package.extras]
26
- dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "furo", "sphinx", "sphinx-notfound-page", "pre-commit", "cloudpickle"]
27
  docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"]
28
- tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "zope.interface", "cloudpickle"]
29
- tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "six", "mypy", "pytest-mypy-plugins", "cloudpickle"]
30
 
31
  [[package]]
32
  name = "babel"
33
- version = "2.9.1"
34
  description = "Internationalization utilities"
35
  category = "dev"
36
  optional = false
37
- python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
38
 
39
  [package.dependencies]
40
  pytz = ">=2015.7"
41
 
42
  [[package]]
43
  name = "beautifulsoup4"
44
- version = "4.10.0"
45
  description = "Screen-scraping library"
46
  category = "main"
47
  optional = false
48
- python-versions = ">3.0.0"
49
 
50
  [package.dependencies]
51
  soupsieve = ">1.2"
@@ -56,7 +56,7 @@ lxml = ["lxml"]
56
 
57
  [[package]]
58
  name = "black"
59
- version = "22.1.0"
60
  description = "The uncompromising code formatter."
61
  category = "dev"
62
  optional = false
@@ -67,7 +67,7 @@ click = ">=8.0.0"
67
  mypy-extensions = ">=0.4.3"
68
  pathspec = ">=0.9.0"
69
  platformdirs = ">=2"
70
- tomli = ">=1.1.0"
71
  typed-ast = {version = ">=1.4.2", markers = "python_version < \"3.8\" and implementation_name == \"cpython\""}
72
  typing-extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""}
73
 
@@ -79,28 +79,31 @@ uvloop = ["uvloop (>=0.15.2)"]
79
 
80
  [[package]]
81
  name = "bleach"
82
- version = "4.1.0"
83
  description = "An easy safelist-based HTML-sanitizing tool."
84
  category = "dev"
85
  optional = false
86
- python-versions = ">=3.6"
87
 
88
  [package.dependencies]
89
- packaging = "*"
90
  six = ">=1.9.0"
91
  webencodings = "*"
92
 
 
 
 
 
93
  [[package]]
94
  name = "certifi"
95
- version = "2021.10.8"
96
  description = "Python package for providing Mozilla's CA Bundle."
97
  category = "main"
98
  optional = false
99
- python-versions = "*"
100
 
101
  [[package]]
102
  name = "cffi"
103
- version = "1.15.0"
104
  description = "Foreign Function Interface for Python calling C code."
105
  category = "dev"
106
  optional = false
@@ -111,22 +114,22 @@ pycparser = "*"
111
 
112
  [[package]]
113
  name = "charset-normalizer"
114
- version = "2.0.12"
115
  description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
116
  category = "main"
117
  optional = false
118
- python-versions = ">=3.5.0"
119
 
120
  [package.extras]
121
  unicode_backport = ["unicodedata2"]
122
 
123
  [[package]]
124
  name = "click"
125
- version = "8.0.4"
126
  description = "Composable command line interface toolkit"
127
  category = "dev"
128
  optional = false
129
- python-versions = ">=3.6"
130
 
131
  [package.dependencies]
132
  colorama = {version = "*", markers = "platform_system == \"Windows\""}
@@ -134,7 +137,7 @@ importlib-metadata = {version = "*", markers = "python_version < \"3.8\""}
134
 
135
  [[package]]
136
  name = "click-log"
137
- version = "0.3.2"
138
  description = "Logging integration for Click"
139
  category = "dev"
140
  optional = false
@@ -145,7 +148,7 @@ click = "*"
145
 
146
  [[package]]
147
  name = "colorama"
148
- version = "0.4.4"
149
  description = "Cross-platform colored terminal text."
150
  category = "dev"
151
  optional = false
@@ -164,7 +167,7 @@ toml = ["toml"]
164
 
165
  [[package]]
166
  name = "cryptography"
167
- version = "36.0.1"
168
  description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
169
  category = "dev"
170
  optional = false
@@ -177,9 +180,9 @@ cffi = ">=1.12"
177
  docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"]
178
  docstest = ["pyenchant (>=1.6.11)", "twine (>=1.12.0)", "sphinxcontrib-spelling (>=4.0.1)"]
179
  pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"]
180
- sdist = ["setuptools_rust (>=0.11.4)"]
181
  ssh = ["bcrypt (>=3.1.5)"]
182
- test = ["pytest (>=6.2.0)", "pytest-cov", "pytest-subtests", "pytest-xdist", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,!=3.79.2)"]
183
 
184
  [[package]]
185
  name = "docutils"
@@ -191,14 +194,11 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
191
 
192
  [[package]]
193
  name = "dotty-dict"
194
- version = "1.3.0"
195
  description = "Dictionary wrapper for quick access to deeply nested keys."
196
  category = "dev"
197
  optional = false
198
- python-versions = "*"
199
-
200
- [package.dependencies]
201
- setuptools_scm = "*"
202
 
203
  [[package]]
204
  name = "gitdb"
@@ -225,7 +225,7 @@ typing-extensions = {version = ">=3.7.4.3", markers = "python_version < \"3.8\""
225
 
226
  [[package]]
227
  name = "idna"
228
- version = "3.3"
229
  description = "Internationalized Domain Names in Applications (IDNA)"
230
  category = "main"
231
  optional = false
@@ -233,7 +233,7 @@ python-versions = ">=3.5"
233
 
234
  [[package]]
235
  name = "imagesize"
236
- version = "1.3.0"
237
  description = "Getting image size from png/jpeg/jpeg2000/gif file"
238
  category = "dev"
239
  optional = false
@@ -241,7 +241,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
241
 
242
  [[package]]
243
  name = "importlib-metadata"
244
- version = "4.11.2"
245
  description = "Read metadata from Python packages"
246
  category = "dev"
247
  optional = false
@@ -254,7 +254,7 @@ zipp = ">=0.5"
254
  [package.extras]
255
  docs = ["sphinx", "jaraco.packaging (>=9)", "rst.linker (>=1.9)"]
256
  perf = ["ipython"]
257
- testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "packaging", "pyfakefs", "flufl.flake8", "pytest-perf (>=0.9.2)", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)", "importlib-resources (>=1.3)"]
258
 
259
  [[package]]
260
  name = "iniconfig"
@@ -266,7 +266,7 @@ python-versions = "*"
266
 
267
  [[package]]
268
  name = "invoke"
269
- version = "1.6.0"
270
  description = "Pythonic task execution"
271
  category = "dev"
272
  optional = false
@@ -286,25 +286,40 @@ requirements_deprecated_finder = ["pipreqs", "pip-api"]
286
  colors = ["colorama (>=0.4.3,<0.5.0)"]
287
  plugins = ["setuptools"]
288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  [[package]]
290
  name = "jeepney"
291
- version = "0.7.1"
292
  description = "Low-level, pure Python DBus protocol wrapper."
293
  category = "dev"
294
  optional = false
295
- python-versions = ">=3.6"
296
 
297
  [package.extras]
298
- test = ["pytest", "pytest-trio", "pytest-asyncio", "testpath", "trio", "async-timeout"]
299
- trio = ["trio", "async-generator"]
300
 
301
  [[package]]
302
  name = "jinja2"
303
- version = "3.0.3"
304
  description = "A very fast and expressive template engine."
305
  category = "dev"
306
  optional = false
307
- python-versions = ">=3.6"
308
 
309
  [package.dependencies]
310
  MarkupSafe = ">=2.0"
@@ -314,30 +329,39 @@ i18n = ["Babel (>=2.7)"]
314
 
315
  [[package]]
316
  name = "keyring"
317
- version = "23.5.0"
318
  description = "Store and access your passwords safely."
319
  category = "dev"
320
  optional = false
321
  python-versions = ">=3.7"
322
 
323
  [package.dependencies]
324
- importlib-metadata = ">=3.6"
 
325
  jeepney = {version = ">=0.4.2", markers = "sys_platform == \"linux\""}
326
  pywin32-ctypes = {version = "<0.1.0 || >0.1.0,<0.1.1 || >0.1.1", markers = "sys_platform == \"win32\""}
327
  SecretStorage = {version = ">=3.2", markers = "sys_platform == \"linux\""}
328
 
329
  [package.extras]
330
- docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)", "jaraco.tidelift (>=1.4)"]
331
- testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-black (>=0.3.7)", "pytest-mypy"]
332
 
333
  [[package]]
334
  name = "markupsafe"
335
- version = "2.1.0"
336
  description = "Safely add untrusted strings to HTML/XML markup."
337
  category = "dev"
338
  optional = false
339
  python-versions = ">=3.7"
340
 
 
 
 
 
 
 
 
 
341
  [[package]]
342
  name = "mypy-extensions"
343
  version = "0.4.3"
@@ -359,34 +383,34 @@ pyparsing = ">=2.0.2,<3.0.5 || >3.0.5"
359
 
360
  [[package]]
361
  name = "pathspec"
362
- version = "0.9.0"
363
  description = "Utility library for gitignore style pattern matching of file paths."
364
  category = "dev"
365
  optional = false
366
- python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
367
 
368
  [[package]]
369
  name = "pkginfo"
370
- version = "1.8.2"
371
  description = "Query metadatdata from sdists / bdists / installed packages."
372
  category = "dev"
373
  optional = false
374
- python-versions = "*"
375
 
376
  [package.extras]
377
- testing = ["coverage", "nose"]
378
 
379
  [[package]]
380
  name = "platformdirs"
381
- version = "2.5.1"
382
  description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
383
  category = "dev"
384
  optional = false
385
  python-versions = ">=3.7"
386
 
387
  [package.extras]
388
- docs = ["Sphinx (>=4)", "furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx-autodoc-typehints (>=1.12)"]
389
- test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"]
390
 
391
  [[package]]
392
  name = "pluggy"
@@ -421,22 +445,25 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
421
 
422
  [[package]]
423
  name = "pygments"
424
- version = "2.11.2"
425
  description = "Pygments is a syntax highlighting package written in Python."
426
  category = "dev"
427
  optional = false
428
- python-versions = ">=3.5"
 
 
 
429
 
430
  [[package]]
431
  name = "pyparsing"
432
- version = "3.0.7"
433
- description = "Python parsing module"
434
  category = "dev"
435
  optional = false
436
- python-versions = ">=3.6"
437
 
438
  [package.extras]
439
- diagrams = ["jinja2", "railroad-diagrams"]
440
 
441
  [[package]]
442
  name = "pytest"
@@ -474,23 +501,23 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytes
474
 
475
  [[package]]
476
  name = "python-gitlab"
477
- version = "2.10.1"
478
  description = "Interact with GitLab API"
479
  category = "dev"
480
  optional = false
481
- python-versions = ">=3.6.0"
482
 
483
  [package.dependencies]
484
  requests = ">=2.25.0"
485
  requests-toolbelt = ">=0.9.1"
486
 
487
  [package.extras]
488
- autocompletion = ["argcomplete (>=1.10.0,<2)"]
489
  yaml = ["PyYaml (>=5.2)"]
490
 
491
  [[package]]
492
  name = "python-semantic-release"
493
- version = "7.26.0"
494
  description = "Automatic Semantic Versioning for Python projects"
495
  category = "dev"
496
  optional = false
@@ -502,21 +529,22 @@ click-log = ">=0.3,<1"
502
  dotty-dict = ">=1.3.0,<2"
503
  gitpython = ">=3.0.8,<4"
504
  invoke = ">=1.4.1,<2"
505
- python-gitlab = ">=1.10,<3"
 
506
  requests = ">=2.25,<3"
507
  semver = ">=2.10,<3"
508
- tomlkit = "0.7.0"
509
  twine = ">=3,<4"
510
 
511
  [package.extras]
512
  dev = ["tox", "isort", "black"]
513
- docs = ["Sphinx (==1.3.6)"]
514
  mypy = ["mypy", "types-requests"]
515
  test = ["coverage (>=5,<6)", "pytest (>=5,<6)", "pytest-xdist (>=1,<2)", "pytest-mock (>=2,<3)", "responses (==0.13.3)", "mock (==1.3.0)"]
516
 
517
  [[package]]
518
  name = "pytz"
519
- version = "2021.3"
520
  description = "World timezone definitions, modern and historical"
521
  category = "dev"
522
  optional = false
@@ -532,11 +560,11 @@ python-versions = "*"
532
 
533
  [[package]]
534
  name = "readme-renderer"
535
- version = "34.0"
536
  description = "readme_renderer is a library for rendering \"readme\" descriptions for Warehouse"
537
  category = "dev"
538
  optional = false
539
- python-versions = ">=3.6"
540
 
541
  [package.dependencies]
542
  bleach = ">=2.1.0"
@@ -548,21 +576,21 @@ md = ["cmarkgfm (>=0.8.0)"]
548
 
549
  [[package]]
550
  name = "requests"
551
- version = "2.27.1"
552
  description = "Python HTTP for Humans."
553
  category = "main"
554
  optional = false
555
- python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
556
 
557
  [package.dependencies]
558
  certifi = ">=2017.4.17"
559
- charset-normalizer = {version = ">=2.0.0,<2.1.0", markers = "python_version >= \"3\""}
560
- idna = {version = ">=2.5,<4", markers = "python_version >= \"3\""}
561
  urllib3 = ">=1.21.1,<1.27"
562
 
563
  [package.extras]
564
- socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"]
565
- use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"]
566
 
567
  [[package]]
568
  name = "requests-toolbelt"
@@ -588,7 +616,7 @@ idna2008 = ["idna"]
588
 
589
  [[package]]
590
  name = "secretstorage"
591
- version = "3.3.1"
592
  description = "Python bindings to FreeDesktop.org Secret Service API"
593
  category = "dev"
594
  optional = false
@@ -606,22 +634,6 @@ category = "dev"
606
  optional = false
607
  python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
608
 
609
- [[package]]
610
- name = "setuptools-scm"
611
- version = "6.4.2"
612
- description = "the blessed package to manage your versions by scm tags"
613
- category = "dev"
614
- optional = false
615
- python-versions = ">=3.6"
616
-
617
- [package.dependencies]
618
- packaging = ">=20.0"
619
- tomli = ">=1.0.0"
620
-
621
- [package.extras]
622
- test = ["pytest (>=6.2)", "virtualenv (>20)"]
623
- toml = ["setuptools (>=42)"]
624
-
625
  [[package]]
626
  name = "six"
627
  version = "1.16.0"
@@ -648,7 +660,7 @@ python-versions = "*"
648
 
649
  [[package]]
650
  name = "soupsieve"
651
- version = "2.3.1"
652
  description = "A modern CSS selector implementation for Beautiful Soup."
653
  category = "main"
654
  optional = false
@@ -656,7 +668,7 @@ python-versions = ">=3.6"
656
 
657
  [[package]]
658
  name = "sphinx"
659
- version = "4.4.0"
660
  description = "Python documentation generator"
661
  category = "dev"
662
  optional = false
@@ -775,15 +787,15 @@ python-versions = ">=3.7"
775
 
776
  [[package]]
777
  name = "tomlkit"
778
- version = "0.7.0"
779
  description = "Style preserving TOML library"
780
  category = "dev"
781
  optional = false
782
- python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
783
 
784
  [[package]]
785
  name = "tqdm"
786
- version = "4.63.0"
787
  description = "Fast, Extensible Progress Meter"
788
  category = "dev"
789
  optional = false
@@ -795,6 +807,7 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""}
795
  [package.extras]
796
  dev = ["py-make (>=0.1.0)", "twine", "wheel"]
797
  notebook = ["ipywidgets (>=6)"]
 
798
  telegram = ["requests"]
799
 
800
  [[package]]
@@ -819,7 +832,7 @@ urllib3 = ">=1.26.0"
819
 
820
  [[package]]
821
  name = "typed-ast"
822
- version = "1.5.2"
823
  description = "a fork of Python 2 and 3 ast modules with type comment support"
824
  category = "dev"
825
  optional = false
@@ -827,23 +840,23 @@ python-versions = ">=3.6"
827
 
828
  [[package]]
829
  name = "typing-extensions"
830
- version = "4.1.1"
831
- description = "Backported and Experimental Type Hints for Python 3.6+"
832
  category = "dev"
833
  optional = false
834
- python-versions = ">=3.6"
835
 
836
  [[package]]
837
  name = "urllib3"
838
- version = "1.26.8"
839
  description = "HTTP library with thread-safe connection pooling, file post, and more."
840
  category = "main"
841
  optional = false
842
- python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4"
843
 
844
  [package.extras]
845
- brotli = ["brotlipy (>=0.6.0)"]
846
- secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"]
847
  socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
848
 
849
  [[package]]
@@ -856,142 +869,43 @@ python-versions = "*"
856
 
857
  [[package]]
858
  name = "zipp"
859
- version = "3.7.0"
860
  description = "Backport of pathlib-compatible object wrapper for zip files"
861
  category = "dev"
862
  optional = false
863
  python-versions = ">=3.7"
864
 
865
  [package.extras]
866
- docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"]
867
- testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "jaraco.itertools", "func-timeout", "pytest-black (>=0.3.7)", "pytest-mypy"]
868
 
869
  [metadata]
870
  lock-version = "1.1"
871
  python-versions = "^3.7"
872
- content-hash = "432449f766236030800ea48e7924e1324fdcbc0674fbbf116cd74b64de016688"
873
 
874
  [metadata.files]
875
  alabaster = [
876
  {file = "alabaster-0.7.12-py2.py3-none-any.whl", hash = "sha256:446438bdcca0e05bd45ea2de1668c1d9b032e1a9154c2c259092d77031ddd359"},
877
  {file = "alabaster-0.7.12.tar.gz", hash = "sha256:a661d72d58e6ea8a57f7a86e37d86716863ee5e92788398526d58b26a4e4dc02"},
878
  ]
879
- atomicwrites = [
880
- {file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"},
881
- {file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"},
882
- ]
883
- attrs = [
884
- {file = "attrs-21.4.0-py2.py3-none-any.whl", hash = "sha256:2d27e3784d7a565d36ab851fe94887c5eccd6a463168875832a1be79c82828b4"},
885
- {file = "attrs-21.4.0.tar.gz", hash = "sha256:626ba8234211db98e869df76230a137c4c40a12d72445c45d5f5b716f076e2fd"},
886
- ]
887
- babel = [
888
- {file = "Babel-2.9.1-py2.py3-none-any.whl", hash = "sha256:ab49e12b91d937cd11f0b67cb259a57ab4ad2b59ac7a3b41d6c06c0ac5b0def9"},
889
- {file = "Babel-2.9.1.tar.gz", hash = "sha256:bc0c176f9f6a994582230df350aa6e05ba2ebe4b3ac317eab29d9be5d2768da0"},
890
- ]
891
- beautifulsoup4 = [
892
- {file = "beautifulsoup4-4.10.0-py3-none-any.whl", hash = "sha256:9a315ce70049920ea4572a4055bc4bd700c940521d36fc858205ad4fcde149bf"},
893
- {file = "beautifulsoup4-4.10.0.tar.gz", hash = "sha256:c23ad23c521d818955a4151a67d81580319d4bf548d3d49f4223ae041ff98891"},
894
- ]
895
- black = [
896
- {file = "black-22.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:1297c63b9e1b96a3d0da2d85d11cd9bf8664251fd69ddac068b98dc4f34f73b6"},
897
- {file = "black-22.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2ff96450d3ad9ea499fc4c60e425a1439c2120cbbc1ab959ff20f7c76ec7e866"},
898
- {file = "black-22.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0e21e1f1efa65a50e3960edd068b6ae6d64ad6235bd8bfea116a03b21836af71"},
899
- {file = "black-22.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f69158a7d120fd641d1fa9a921d898e20d52e44a74a6fbbcc570a62a6bc8ab"},
900
- {file = "black-22.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:228b5ae2c8e3d6227e4bde5920d2fc66cc3400fde7bcc74f480cb07ef0b570d5"},
901
- {file = "black-22.1.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b1a5ed73ab4c482208d20434f700d514f66ffe2840f63a6252ecc43a9bc77e8a"},
902
- {file = "black-22.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:35944b7100af4a985abfcaa860b06af15590deb1f392f06c8683b4381e8eeaf0"},
903
- {file = "black-22.1.0-cp36-cp36m-win_amd64.whl", hash = "sha256:7835fee5238fc0a0baf6c9268fb816b5f5cd9b8793423a75e8cd663c48d073ba"},
904
- {file = "black-22.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dae63f2dbf82882fa3b2a3c49c32bffe144970a573cd68d247af6560fc493ae1"},
905
- {file = "black-22.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fa1db02410b1924b6749c245ab38d30621564e658297484952f3d8a39fce7e8"},
906
- {file = "black-22.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c8226f50b8c34a14608b848dc23a46e5d08397d009446353dad45e04af0c8e28"},
907
- {file = "black-22.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2d6f331c02f0f40aa51a22e479c8209d37fcd520c77721c034517d44eecf5912"},
908
- {file = "black-22.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:742ce9af3086e5bd07e58c8feb09dbb2b047b7f566eb5f5bc63fd455814979f3"},
909
- {file = "black-22.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:fdb8754b453fb15fad3f72cd9cad3e16776f0964d67cf30ebcbf10327a3777a3"},
910
- {file = "black-22.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5660feab44c2e3cb24b2419b998846cbb01c23c7fe645fee45087efa3da2d61"},
911
- {file = "black-22.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:6f2f01381f91c1efb1451998bd65a129b3ed6f64f79663a55fe0e9b74a5f81fd"},
912
- {file = "black-22.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:efbadd9b52c060a8fc3b9658744091cb33c31f830b3f074422ed27bad2b18e8f"},
913
- {file = "black-22.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8871fcb4b447206904932b54b567923e5be802b9b19b744fdff092bd2f3118d0"},
914
- {file = "black-22.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ccad888050f5393f0d6029deea2a33e5ae371fd182a697313bdbd835d3edaf9c"},
915
- {file = "black-22.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07e5c049442d7ca1a2fc273c79d1aecbbf1bc858f62e8184abe1ad175c4f7cc2"},
916
- {file = "black-22.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:373922fc66676133ddc3e754e4509196a8c392fec3f5ca4486673e685a421321"},
917
- {file = "black-22.1.0-py3-none-any.whl", hash = "sha256:3524739d76b6b3ed1132422bf9d82123cd1705086723bc3e235ca39fd21c667d"},
918
- {file = "black-22.1.0.tar.gz", hash = "sha256:a7c0192d35635f6fc1174be575cb7915e92e5dd629ee79fdaf0dcfa41a80afb5"},
919
- ]
920
- bleach = [
921
- {file = "bleach-4.1.0-py2.py3-none-any.whl", hash = "sha256:4d2651ab93271d1129ac9cbc679f524565cc8a1b791909c4a51eac4446a15994"},
922
- {file = "bleach-4.1.0.tar.gz", hash = "sha256:0900d8b37eba61a802ee40ac0061f8c2b5dee29c1927dd1d233e075ebf5a71da"},
923
- ]
924
- certifi = [
925
- {file = "certifi-2021.10.8-py2.py3-none-any.whl", hash = "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569"},
926
- {file = "certifi-2021.10.8.tar.gz", hash = "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872"},
927
- ]
928
- cffi = [
929
- {file = "cffi-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c2502a1a03b6312837279c8c1bd3ebedf6c12c4228ddbad40912d671ccc8a962"},
930
- {file = "cffi-1.15.0-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:23cfe892bd5dd8941608f93348c0737e369e51c100d03718f108bf1add7bd6d0"},
931
- {file = "cffi-1.15.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:41d45de54cd277a7878919867c0f08b0cf817605e4eb94093e7516505d3c8d14"},
932
- {file = "cffi-1.15.0-cp27-cp27m-win32.whl", hash = "sha256:4a306fa632e8f0928956a41fa8e1d6243c71e7eb59ffbd165fc0b41e316b2474"},
933
- {file = "cffi-1.15.0-cp27-cp27m-win_amd64.whl", hash = "sha256:e7022a66d9b55e93e1a845d8c9eba2a1bebd4966cd8bfc25d9cd07d515b33fa6"},
934
- {file = "cffi-1.15.0-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:14cd121ea63ecdae71efa69c15c5543a4b5fbcd0bbe2aad864baca0063cecf27"},
935
- {file = "cffi-1.15.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:d4d692a89c5cf08a8557fdeb329b82e7bf609aadfaed6c0d79f5a449a3c7c023"},
936
- {file = "cffi-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0104fb5ae2391d46a4cb082abdd5c69ea4eab79d8d44eaaf79f1b1fd806ee4c2"},
937
- {file = "cffi-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:91ec59c33514b7c7559a6acda53bbfe1b283949c34fe7440bcf917f96ac0723e"},
938
- {file = "cffi-1.15.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f5c7150ad32ba43a07c4479f40241756145a1f03b43480e058cfd862bf5041c7"},
939
- {file = "cffi-1.15.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:00c878c90cb53ccfaae6b8bc18ad05d2036553e6d9d1d9dbcf323bbe83854ca3"},
940
- {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:abb9a20a72ac4e0fdb50dae135ba5e77880518e742077ced47eb1499e29a443c"},
941
- {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a5263e363c27b653a90078143adb3d076c1a748ec9ecc78ea2fb916f9b861962"},
942
- {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f54a64f8b0c8ff0b64d18aa76675262e1700f3995182267998c31ae974fbc382"},
943
- {file = "cffi-1.15.0-cp310-cp310-win32.whl", hash = "sha256:c21c9e3896c23007803a875460fb786118f0cdd4434359577ea25eb556e34c55"},
944
- {file = "cffi-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:5e069f72d497312b24fcc02073d70cb989045d1c91cbd53979366077959933e0"},
945
- {file = "cffi-1.15.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:64d4ec9f448dfe041705426000cc13e34e6e5bb13736e9fd62e34a0b0c41566e"},
946
- {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2756c88cbb94231c7a147402476be2c4df2f6078099a6f4a480d239a8817ae39"},
947
- {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b96a311ac60a3f6be21d2572e46ce67f09abcf4d09344c49274eb9e0bf345fc"},
948
- {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75e4024375654472cc27e91cbe9eaa08567f7fbdf822638be2814ce059f58032"},
949
- {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:59888172256cac5629e60e72e86598027aca6bf01fa2465bdb676d37636573e8"},
950
- {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:27c219baf94952ae9d50ec19651a687b826792055353d07648a5695413e0c605"},
951
- {file = "cffi-1.15.0-cp36-cp36m-win32.whl", hash = "sha256:4958391dbd6249d7ad855b9ca88fae690783a6be9e86df65865058ed81fc860e"},
952
- {file = "cffi-1.15.0-cp36-cp36m-win_amd64.whl", hash = "sha256:f6f824dc3bce0edab5f427efcfb1d63ee75b6fcb7282900ccaf925be84efb0fc"},
953
- {file = "cffi-1.15.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:06c48159c1abed75c2e721b1715c379fa3200c7784271b3c46df01383b593636"},
954
- {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c2051981a968d7de9dd2d7b87bcb9c939c74a34626a6e2f8181455dd49ed69e4"},
955
- {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:fd8a250edc26254fe5b33be00402e6d287f562b6a5b2152dec302fa15bb3e997"},
956
- {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:91d77d2a782be4274da750752bb1650a97bfd8f291022b379bb8e01c66b4e96b"},
957
- {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45db3a33139e9c8f7c09234b5784a5e33d31fd6907800b316decad50af323ff2"},
958
- {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:263cc3d821c4ab2213cbe8cd8b355a7f72a8324577dc865ef98487c1aeee2bc7"},
959
- {file = "cffi-1.15.0-cp37-cp37m-win32.whl", hash = "sha256:17771976e82e9f94976180f76468546834d22a7cc404b17c22df2a2c81db0c66"},
960
- {file = "cffi-1.15.0-cp37-cp37m-win_amd64.whl", hash = "sha256:3415c89f9204ee60cd09b235810be700e993e343a408693e80ce7f6a40108029"},
961
- {file = "cffi-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4238e6dab5d6a8ba812de994bbb0a79bddbdf80994e4ce802b6f6f3142fcc880"},
962
- {file = "cffi-1.15.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0808014eb713677ec1292301ea4c81ad277b6cdf2fdd90fd540af98c0b101d20"},
963
- {file = "cffi-1.15.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:57e9ac9ccc3101fac9d6014fba037473e4358ef4e89f8e181f8951a2c0162024"},
964
- {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b6c2ea03845c9f501ed1313e78de148cd3f6cad741a75d43a29b43da27f2e1e"},
965
- {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:10dffb601ccfb65262a27233ac273d552ddc4d8ae1bf93b21c94b8511bffe728"},
966
- {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:786902fb9ba7433aae840e0ed609f45c7bcd4e225ebb9c753aa39725bb3e6ad6"},
967
- {file = "cffi-1.15.0-cp38-cp38-win32.whl", hash = "sha256:da5db4e883f1ce37f55c667e5c0de439df76ac4cb55964655906306918e7363c"},
968
- {file = "cffi-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:181dee03b1170ff1969489acf1c26533710231c58f95534e3edac87fff06c443"},
969
- {file = "cffi-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:45e8636704eacc432a206ac7345a5d3d2c62d95a507ec70d62f23cd91770482a"},
970
- {file = "cffi-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:31fb708d9d7c3f49a60f04cf5b119aeefe5644daba1cd2a0fe389b674fd1de37"},
971
- {file = "cffi-1.15.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6dc2737a3674b3e344847c8686cf29e500584ccad76204efea14f451d4cc669a"},
972
- {file = "cffi-1.15.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:74fdfdbfdc48d3f47148976f49fab3251e550a8720bebc99bf1483f5bfb5db3e"},
973
- {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffaa5c925128e29efbde7301d8ecaf35c8c60ffbcd6a1ffd3a552177c8e5e796"},
974
- {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f7d084648d77af029acb79a0ff49a0ad7e9d09057a9bf46596dac9514dc07df"},
975
- {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ef1f279350da2c586a69d32fc8733092fd32cc8ac95139a00377841f59a3f8d8"},
976
- {file = "cffi-1.15.0-cp39-cp39-win32.whl", hash = "sha256:2a23af14f408d53d5e6cd4e3d9a24ff9e05906ad574822a10563efcef137979a"},
977
- {file = "cffi-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:3773c4d81e6e818df2efbc7dd77325ca0dcb688116050fb2b3011218eda36139"},
978
- {file = "cffi-1.15.0.tar.gz", hash = "sha256:920f0d66a896c2d99f0adbb391f990a84091179542c205fa53ce5787aff87954"},
979
- ]
980
- charset-normalizer = [
981
- {file = "charset-normalizer-2.0.12.tar.gz", hash = "sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597"},
982
- {file = "charset_normalizer-2.0.12-py3-none-any.whl", hash = "sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df"},
983
- ]
984
  click = [
985
- {file = "click-8.0.4-py3-none-any.whl", hash = "sha256:6a7a62563bbfabfda3a38f3023a1db4a35978c0abd76f6c9605ecd6554d6d9b1"},
986
- {file = "click-8.0.4.tar.gz", hash = "sha256:8458d7b1287c5fb128c90e23381cf99dcde74beaf6c7ff6384ce84d6fe090adb"},
987
- ]
988
- click-log = [
989
- {file = "click-log-0.3.2.tar.gz", hash = "sha256:16fd1ca3fc6b16c98cea63acf1ab474ea8e676849dc669d86afafb0ed7003124"},
990
- {file = "click_log-0.3.2-py2.py3-none-any.whl", hash = "sha256:eee14dc37cdf3072158570f00406572f9e03e414accdccfccd4c538df9ae322c"},
991
  ]
 
992
  colorama = [
993
- {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"},
994
- {file = "colorama-0.4.4.tar.gz", hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"},
995
  ]
996
  coverage = [
997
  {file = "coverage-5.5-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:b6d534e4b2ab35c9f93f46229363e17f63c53ad01330df9f2d6bd1187e5eaacf"},
@@ -1047,35 +961,12 @@ coverage = [
1047
  {file = "coverage-5.5-pp37-none-any.whl", hash = "sha256:2a3859cb82dcbda1cfd3e6f71c27081d18aa251d20a17d87d26d4cd216fb0af4"},
1048
  {file = "coverage-5.5.tar.gz", hash = "sha256:ebe78fe9a0e874362175b02371bdfbee64d8edc42a044253ddf4ee7d3c15212c"},
1049
  ]
1050
- cryptography = [
1051
- {file = "cryptography-36.0.1-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:73bc2d3f2444bcfeac67dd130ff2ea598ea5f20b40e36d19821b4df8c9c5037b"},
1052
- {file = "cryptography-36.0.1-cp36-abi3-macosx_10_10_x86_64.whl", hash = "sha256:2d87cdcb378d3cfed944dac30596da1968f88fb96d7fc34fdae30a99054b2e31"},
1053
- {file = "cryptography-36.0.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:74d6c7e80609c0f4c2434b97b80c7f8fdfaa072ca4baab7e239a15d6d70ed73a"},
1054
- {file = "cryptography-36.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:6c0c021f35b421ebf5976abf2daacc47e235f8b6082d3396a2fe3ccd537ab173"},
1055
- {file = "cryptography-36.0.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d59a9d55027a8b88fd9fd2826c4392bd487d74bf628bb9d39beecc62a644c12"},
1056
- {file = "cryptography-36.0.1-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a817b961b46894c5ca8a66b599c745b9a3d9f822725221f0e0fe49dc043a3a3"},
1057
- {file = "cryptography-36.0.1-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:94ae132f0e40fe48f310bba63f477f14a43116f05ddb69d6fa31e93f05848ae2"},
1058
- {file = "cryptography-36.0.1-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:7be0eec337359c155df191d6ae00a5e8bbb63933883f4f5dffc439dac5348c3f"},
1059
- {file = "cryptography-36.0.1-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:e0344c14c9cb89e76eb6a060e67980c9e35b3f36691e15e1b7a9e58a0a6c6dc3"},
1060
- {file = "cryptography-36.0.1-cp36-abi3-win32.whl", hash = "sha256:4caa4b893d8fad33cf1964d3e51842cd78ba87401ab1d2e44556826df849a8ca"},
1061
- {file = "cryptography-36.0.1-cp36-abi3-win_amd64.whl", hash = "sha256:391432971a66cfaf94b21c24ab465a4cc3e8bf4a939c1ca5c3e3a6e0abebdbcf"},
1062
- {file = "cryptography-36.0.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:bb5829d027ff82aa872d76158919045a7c1e91fbf241aec32cb07956e9ebd3c9"},
1063
- {file = "cryptography-36.0.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ebc15b1c22e55c4d5566e3ca4db8689470a0ca2babef8e3a9ee057a8b82ce4b1"},
1064
- {file = "cryptography-36.0.1-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:596f3cd67e1b950bc372c33f1a28a0692080625592ea6392987dba7f09f17a94"},
1065
- {file = "cryptography-36.0.1-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:30ee1eb3ebe1644d1c3f183d115a8c04e4e603ed6ce8e394ed39eea4a98469ac"},
1066
- {file = "cryptography-36.0.1-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ec63da4e7e4a5f924b90af42eddf20b698a70e58d86a72d943857c4c6045b3ee"},
1067
- {file = "cryptography-36.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca238ceb7ba0bdf6ce88c1b74a87bffcee5afbfa1e41e173b1ceb095b39add46"},
1068
- {file = "cryptography-36.0.1-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:ca28641954f767f9822c24e927ad894d45d5a1e501767599647259cbf030b903"},
1069
- {file = "cryptography-36.0.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:39bdf8e70eee6b1c7b289ec6e5d84d49a6bfa11f8b8646b5b3dfe41219153316"},
1070
- {file = "cryptography-36.0.1.tar.gz", hash = "sha256:53e5c1dc3d7a953de055d77bef2ff607ceef7a2aac0353b5d630ab67f7423638"},
1071
- ]
1072
  docutils = [
1073
  {file = "docutils-0.17.1-py2.py3-none-any.whl", hash = "sha256:cf316c8370a737a022b72b56874f6602acf974a37a9fba42ec2876387549fc61"},
1074
  {file = "docutils-0.17.1.tar.gz", hash = "sha256:686577d2e4c32380bb50cbb22f575ed742d58168cee37e99117a854bcd88f125"},
1075
  ]
1076
- dotty-dict = [
1077
- {file = "dotty_dict-1.3.0.tar.gz", hash = "sha256:eb0035a3629ecd84397a68f1f42f1e94abd1c34577a19cd3eacad331ee7cbaf0"},
1078
- ]
1079
  gitdb = [
1080
  {file = "gitdb-4.0.9-py3-none-any.whl", hash = "sha256:8033ad4e853066ba6ca92050b9df2f89301b8fc8bf7e9324d412a63f8bf1a8fd"},
1081
  {file = "gitdb-4.0.9.tar.gz", hash = "sha256:bac2fd45c0a1c9cf619e63a90d62bdc63892ef92387424b855792a6cabe789aa"},
@@ -1084,85 +975,24 @@ gitpython = [
1084
  {file = "GitPython-3.1.27-py3-none-any.whl", hash = "sha256:5b68b000463593e05ff2b261acff0ff0972df8ab1b70d3cdbd41b546c8b8fc3d"},
1085
  {file = "GitPython-3.1.27.tar.gz", hash = "sha256:1c885ce809e8ba2d88a29befeb385fcea06338d3640712b59ca623c220bb5704"},
1086
  ]
1087
- idna = [
1088
- {file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"},
1089
- {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"},
1090
- ]
1091
- imagesize = [
1092
- {file = "imagesize-1.3.0-py2.py3-none-any.whl", hash = "sha256:1db2f82529e53c3e929e8926a1fa9235aa82d0bd0c580359c67ec31b2fddaa8c"},
1093
- {file = "imagesize-1.3.0.tar.gz", hash = "sha256:cd1750d452385ca327479d45b64d9c7729ecf0b3969a58148298c77092261f9d"},
1094
- ]
1095
- importlib-metadata = [
1096
- {file = "importlib_metadata-4.11.2-py3-none-any.whl", hash = "sha256:d16e8c1deb60de41b8e8ed21c1a7b947b0bc62fab7e1d470bcdf331cea2e6735"},
1097
- {file = "importlib_metadata-4.11.2.tar.gz", hash = "sha256:b36ffa925fe3139b2f6ff11d6925ffd4fa7bc47870165e3ac260ac7b4f91e6ac"},
1098
- ]
1099
  iniconfig = [
1100
  {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"},
1101
  {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"},
1102
  ]
1103
- invoke = [
1104
- {file = "invoke-1.6.0-py2-none-any.whl", hash = "sha256:e6c9917a1e3e73e7ea91fdf82d5f151ccfe85bf30cc65cdb892444c02dbb5f74"},
1105
- {file = "invoke-1.6.0-py3-none-any.whl", hash = "sha256:769e90caeb1bd07d484821732f931f1ad8916a38e3f3e618644687fc09cb6317"},
1106
- {file = "invoke-1.6.0.tar.gz", hash = "sha256:374d1e2ecf78981da94bfaf95366216aaec27c2d6a7b7d5818d92da55aa258d3"},
1107
- ]
1108
  isort = [
1109
  {file = "isort-5.10.1-py3-none-any.whl", hash = "sha256:6f62d78e2f89b4500b080fe3a81690850cd254227f27f75c3a0c491a1f351ba7"},
1110
  {file = "isort-5.10.1.tar.gz", hash = "sha256:e8443a5e7a020e9d7f97f1d7d9cd17c88bcb3bc7e218bf9cf5095fe550be2951"},
1111
  ]
1112
- jeepney = [
1113
- {file = "jeepney-0.7.1-py3-none-any.whl", hash = "sha256:1b5a0ea5c0e7b166b2f5895b91a08c14de8915afda4407fb5022a195224958ac"},
1114
- {file = "jeepney-0.7.1.tar.gz", hash = "sha256:fa9e232dfa0c498bd0b8a3a73b8d8a31978304dcef0515adc859d4e096f96f4f"},
1115
- ]
1116
- jinja2 = [
1117
- {file = "Jinja2-3.0.3-py3-none-any.whl", hash = "sha256:077ce6014f7b40d03b47d1f1ca4b0fc8328a692bd284016f806ed0eaca390ad8"},
1118
- {file = "Jinja2-3.0.3.tar.gz", hash = "sha256:611bb273cd68f3b993fabdc4064fc858c5b47a973cb5aa7999ec1ba405c87cd7"},
1119
- ]
1120
- keyring = [
1121
- {file = "keyring-23.5.0-py3-none-any.whl", hash = "sha256:b0d28928ac3ec8e42ef4cc227822647a19f1d544f21f96457965dc01cf555261"},
1122
- {file = "keyring-23.5.0.tar.gz", hash = "sha256:9012508e141a80bd1c0b6778d5c610dd9f8c464d75ac6774248500503f972fb9"},
1123
- ]
1124
- markupsafe = [
1125
- {file = "MarkupSafe-2.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3028252424c72b2602a323f70fbf50aa80a5d3aa616ea6add4ba21ae9cc9da4c"},
1126
- {file = "MarkupSafe-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:290b02bab3c9e216da57c1d11d2ba73a9f73a614bbdcc027d299a60cdfabb11a"},
1127
- {file = "MarkupSafe-2.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e104c0c2b4cd765b4e83909cde7ec61a1e313f8a75775897db321450e928cce"},
1128
- {file = "MarkupSafe-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24c3be29abb6b34052fd26fc7a8e0a49b1ee9d282e3665e8ad09a0a68faee5b3"},
1129
- {file = "MarkupSafe-2.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:204730fd5fe2fe3b1e9ccadb2bd18ba8712b111dcabce185af0b3b5285a7c989"},
1130
- {file = "MarkupSafe-2.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d3b64c65328cb4cd252c94f83e66e3d7acf8891e60ebf588d7b493a55a1dbf26"},
1131
- {file = "MarkupSafe-2.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:96de1932237abe0a13ba68b63e94113678c379dca45afa040a17b6e1ad7ed076"},
1132
- {file = "MarkupSafe-2.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:75bb36f134883fdbe13d8e63b8675f5f12b80bb6627f7714c7d6c5becf22719f"},
1133
- {file = "MarkupSafe-2.1.0-cp310-cp310-win32.whl", hash = "sha256:4056f752015dfa9828dce3140dbadd543b555afb3252507348c493def166d454"},
1134
- {file = "MarkupSafe-2.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:d4e702eea4a2903441f2735799d217f4ac1b55f7d8ad96ab7d4e25417cb0827c"},
1135
- {file = "MarkupSafe-2.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:f0eddfcabd6936558ec020130f932d479930581171368fd728efcfb6ef0dd357"},
1136
- {file = "MarkupSafe-2.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5ddea4c352a488b5e1069069f2f501006b1a4362cb906bee9a193ef1245a7a61"},
1137
- {file = "MarkupSafe-2.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:09c86c9643cceb1d87ca08cdc30160d1b7ab49a8a21564868921959bd16441b8"},
1138
- {file = "MarkupSafe-2.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a0a0abef2ca47b33fb615b491ce31b055ef2430de52c5b3fb19a4042dbc5cadb"},
1139
- {file = "MarkupSafe-2.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:736895a020e31b428b3382a7887bfea96102c529530299f426bf2e636aacec9e"},
1140
- {file = "MarkupSafe-2.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:679cbb78914ab212c49c67ba2c7396dc599a8479de51b9a87b174700abd9ea49"},
1141
- {file = "MarkupSafe-2.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:84ad5e29bf8bab3ad70fd707d3c05524862bddc54dc040982b0dbcff36481de7"},
1142
- {file = "MarkupSafe-2.1.0-cp37-cp37m-win32.whl", hash = "sha256:8da5924cb1f9064589767b0f3fc39d03e3d0fb5aa29e0cb21d43106519bd624a"},
1143
- {file = "MarkupSafe-2.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:454ffc1cbb75227d15667c09f164a0099159da0c1f3d2636aa648f12675491ad"},
1144
- {file = "MarkupSafe-2.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:142119fb14a1ef6d758912b25c4e803c3ff66920635c44078666fe7cc3f8f759"},
1145
- {file = "MarkupSafe-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b2a5a856019d2833c56a3dcac1b80fe795c95f401818ea963594b345929dffa7"},
1146
- {file = "MarkupSafe-2.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d1fb9b2eec3c9714dd936860850300b51dbaa37404209c8d4cb66547884b7ed"},
1147
- {file = "MarkupSafe-2.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:62c0285e91414f5c8f621a17b69fc0088394ccdaa961ef469e833dbff64bd5ea"},
1148
- {file = "MarkupSafe-2.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc3150f85e2dbcf99e65238c842d1cfe69d3e7649b19864c1cc043213d9cd730"},
1149
- {file = "MarkupSafe-2.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f02cf7221d5cd915d7fa58ab64f7ee6dd0f6cddbb48683debf5d04ae9b1c2cc1"},
1150
- {file = "MarkupSafe-2.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:d5653619b3eb5cbd35bfba3c12d575db2a74d15e0e1c08bf1db788069d410ce8"},
1151
- {file = "MarkupSafe-2.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:7d2f5d97fcbd004c03df8d8fe2b973fe2b14e7bfeb2cfa012eaa8759ce9a762f"},
1152
- {file = "MarkupSafe-2.1.0-cp38-cp38-win32.whl", hash = "sha256:3cace1837bc84e63b3fd2dfce37f08f8c18aeb81ef5cf6bb9b51f625cb4e6cd8"},
1153
- {file = "MarkupSafe-2.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:fabbe18087c3d33c5824cb145ffca52eccd053061df1d79d4b66dafa5ad2a5ea"},
1154
- {file = "MarkupSafe-2.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:023af8c54fe63530545f70dd2a2a7eed18d07a9a77b94e8bf1e2ff7f252db9a3"},
1155
- {file = "MarkupSafe-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d66624f04de4af8bbf1c7f21cc06649c1c69a7f84109179add573ce35e46d448"},
1156
- {file = "MarkupSafe-2.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c532d5ab79be0199fa2658e24a02fce8542df196e60665dd322409a03db6a52c"},
1157
- {file = "MarkupSafe-2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e67ec74fada3841b8c5f4c4f197bea916025cb9aa3fe5abf7d52b655d042f956"},
1158
- {file = "MarkupSafe-2.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30c653fde75a6e5eb814d2a0a89378f83d1d3f502ab710904ee585c38888816c"},
1159
- {file = "MarkupSafe-2.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:961eb86e5be7d0973789f30ebcf6caab60b844203f4396ece27310295a6082c7"},
1160
- {file = "MarkupSafe-2.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:598b65d74615c021423bd45c2bc5e9b59539c875a9bdb7e5f2a6b92dfcfc268d"},
1161
- {file = "MarkupSafe-2.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:599941da468f2cf22bf90a84f6e2a65524e87be2fce844f96f2dd9a6c9d1e635"},
1162
- {file = "MarkupSafe-2.1.0-cp39-cp39-win32.whl", hash = "sha256:e6f7f3f41faffaea6596da86ecc2389672fa949bd035251eab26dc6697451d05"},
1163
- {file = "MarkupSafe-2.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:b8811d48078d1cf2a6863dafb896e68406c5f513048451cd2ded0473133473c7"},
1164
- {file = "MarkupSafe-2.1.0.tar.gz", hash = "sha256:80beaf63ddfbc64a0452b841d8036ca0611e049650e20afcb882f5d3c266d65f"},
1165
- ]
1166
  mypy-extensions = [
1167
  {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"},
1168
  {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"},
@@ -1171,17 +1001,11 @@ packaging = [
1171
  {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"},
1172
  {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"},
1173
  ]
1174
- pathspec = [
1175
- {file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"},
1176
- {file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"},
1177
- ]
1178
- pkginfo = [
1179
- {file = "pkginfo-1.8.2-py2.py3-none-any.whl", hash = "sha256:c24c487c6a7f72c66e816ab1796b96ac6c3d14d49338293d2141664330b55ffc"},
1180
- {file = "pkginfo-1.8.2.tar.gz", hash = "sha256:542e0d0b6750e2e21c20179803e40ab50598d8066d51097a0e382cba9eb02bff"},
1181
- ]
1182
  platformdirs = [
1183
- {file = "platformdirs-2.5.1-py3-none-any.whl", hash = "sha256:bcae7cab893c2d310a711b70b24efb93334febe65f8de776ee320b517471e227"},
1184
- {file = "platformdirs-2.5.1.tar.gz", hash = "sha256:7535e70dfa32e84d4b34996ea99c5e432fa29a708d0f4e394bbcb2a8faa4f16d"},
1185
  ]
1186
  pluggy = [
1187
  {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"},
@@ -1195,13 +1019,10 @@ pycparser = [
1195
  {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"},
1196
  {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"},
1197
  ]
1198
- pygments = [
1199
- {file = "Pygments-2.11.2-py3-none-any.whl", hash = "sha256:44238f1b60a76d78fc8ca0528ee429702aae011c265fe6a8dd8b63049ae41c65"},
1200
- {file = "Pygments-2.11.2.tar.gz", hash = "sha256:4e426f72023d88d03b2fa258de560726ce890ff3b630f88c21cbb8b2503b8c6a"},
1201
- ]
1202
  pyparsing = [
1203
- {file = "pyparsing-3.0.7-py3-none-any.whl", hash = "sha256:a6c06a88f252e6c322f65faf8f418b16213b51bdfaece0524c1c1bc30c63c484"},
1204
- {file = "pyparsing-3.0.7.tar.gz", hash = "sha256:18ee9022775d270c55187733956460083db60b37d0d0fb357445f3094eed3eea"},
1205
  ]
1206
  pytest = [
1207
  {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"},
@@ -1211,30 +1032,15 @@ pytest-runner = [
1211
  {file = "pytest-runner-5.3.2.tar.gz", hash = "sha256:48934ec94301f6727d30615af1960539ff62063f6c9b71b7227174e51ba5fb34"},
1212
  {file = "pytest_runner-5.3.2-py3-none-any.whl", hash = "sha256:c7d785ea6c612396c11ddbaf467764d2cc746ef96a713fbe1a296c221503b7c3"},
1213
  ]
1214
- python-gitlab = [
1215
- {file = "python-gitlab-2.10.1.tar.gz", hash = "sha256:7afa7d7c062fa62c173190452265a30feefb844428efc58ea5244f3b9fc0d40f"},
1216
- {file = "python_gitlab-2.10.1-py3-none-any.whl", hash = "sha256:581a219759515513ea9399e936ed7137437cfb681f52d2641626685c492c999d"},
1217
- ]
1218
- python-semantic-release = [
1219
- {file = "python-semantic-release-7.26.0.tar.gz", hash = "sha256:9876885cf16af43d75610b4f46e27d5ad0f699c7d574dcfe0c6b62ab7d43458d"},
1220
- {file = "python_semantic_release-7.26.0-py3-none-any.whl", hash = "sha256:ddd7e2460c526264148d534658ea35aee265d615fe110cdf4e16abc6ffc22e50"},
1221
- ]
1222
- pytz = [
1223
- {file = "pytz-2021.3-py2.py3-none-any.whl", hash = "sha256:3672058bc3453457b622aab7a1c3bfd5ab0bdae451512f6cf25f64ed37f5b87c"},
1224
- {file = "pytz-2021.3.tar.gz", hash = "sha256:acad2d8b20a1af07d4e4c9d2e9285c5ed9104354062f275f3fcd88dcef4f1326"},
1225
- ]
1226
  pywin32-ctypes = [
1227
  {file = "pywin32-ctypes-0.2.0.tar.gz", hash = "sha256:24ffc3b341d457d48e8922352130cf2644024a4ff09762a2261fd34c36ee5942"},
1228
  {file = "pywin32_ctypes-0.2.0-py2.py3-none-any.whl", hash = "sha256:9dc2d991b3479cc2df15930958b674a48a227d5361d413827a4cfd0b5876fc98"},
1229
  ]
1230
- readme-renderer = [
1231
- {file = "readme_renderer-34.0-py3-none-any.whl", hash = "sha256:262510fe6aae81ed4e94d8b169077f325614c0b1a45916a80442c6576264a9c2"},
1232
- {file = "readme_renderer-34.0.tar.gz", hash = "sha256:dfb4d17f21706d145f7473e0b61ca245ba58e810cf9b2209a48239677f82e5b0"},
1233
- ]
1234
- requests = [
1235
- {file = "requests-2.27.1-py2.py3-none-any.whl", hash = "sha256:f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d"},
1236
- {file = "requests-2.27.1.tar.gz", hash = "sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61"},
1237
- ]
1238
  requests-toolbelt = [
1239
  {file = "requests-toolbelt-0.9.1.tar.gz", hash = "sha256:968089d4584ad4ad7c171454f0a5c6dac23971e9472521ea3b6d49d610aa6fc0"},
1240
  {file = "requests_toolbelt-0.9.1-py2.py3-none-any.whl", hash = "sha256:380606e1d10dc85c3bd47bf5a6095f815ec007be7a8b69c878507068df059e6f"},
@@ -1243,18 +1049,11 @@ rfc3986 = [
1243
  {file = "rfc3986-2.0.0-py2.py3-none-any.whl", hash = "sha256:50b1502b60e289cb37883f3dfd34532b8873c7de9f49bb546641ce9cbd256ebd"},
1244
  {file = "rfc3986-2.0.0.tar.gz", hash = "sha256:97aacf9dbd4bfd829baad6e6309fa6573aaf1be3f6fa735c8ab05e46cecb261c"},
1245
  ]
1246
- secretstorage = [
1247
- {file = "SecretStorage-3.3.1-py3-none-any.whl", hash = "sha256:422d82c36172d88d6a0ed5afdec956514b189ddbfb72fefab0c8a1cee4eaf71f"},
1248
- {file = "SecretStorage-3.3.1.tar.gz", hash = "sha256:fd666c51a6bf200643495a04abb261f83229dcb6fd8472ec393df7ffc8b6f195"},
1249
- ]
1250
  semver = [
1251
  {file = "semver-2.13.0-py2.py3-none-any.whl", hash = "sha256:ced8b23dceb22134307c1b8abfa523da14198793d9787ac838e70e29e77458d4"},
1252
  {file = "semver-2.13.0.tar.gz", hash = "sha256:fa0fe2722ee1c3f57eac478820c3a5ae2f624af8264cbdf9000c980ff7f75e3f"},
1253
  ]
1254
- setuptools-scm = [
1255
- {file = "setuptools_scm-6.4.2-py3-none-any.whl", hash = "sha256:acea13255093849de7ccb11af9e1fb8bde7067783450cee9ef7a93139bddf6d4"},
1256
- {file = "setuptools_scm-6.4.2.tar.gz", hash = "sha256:6833ac65c6ed9711a4d5d2266f8024cfa07c533a0e55f4c12f6eff280a5a9e30"},
1257
- ]
1258
  six = [
1259
  {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
1260
  {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
@@ -1267,14 +1066,8 @@ snowballstemmer = [
1267
  {file = "snowballstemmer-2.2.0-py2.py3-none-any.whl", hash = "sha256:c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a"},
1268
  {file = "snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1"},
1269
  ]
1270
- soupsieve = [
1271
- {file = "soupsieve-2.3.1-py3-none-any.whl", hash = "sha256:1a3cca2617c6b38c0343ed661b1fa5de5637f257d4fe22bd9f1338010a1efefb"},
1272
- {file = "soupsieve-2.3.1.tar.gz", hash = "sha256:b8d49b1cd4f037c7082a9683dfa1801aa2597fb11c3a1155b7a5b94829b4f1f9"},
1273
- ]
1274
- sphinx = [
1275
- {file = "Sphinx-4.4.0-py3-none-any.whl", hash = "sha256:5da895959511473857b6d0200f56865ed62c31e8f82dd338063b84ec022701fe"},
1276
- {file = "Sphinx-4.4.0.tar.gz", hash = "sha256:6caad9786055cb1fa22b4a365c1775816b876f91966481765d7d50e9f0dd35cc"},
1277
- ]
1278
  sphinxcontrib-applehelp = [
1279
  {file = "sphinxcontrib-applehelp-1.0.2.tar.gz", hash = "sha256:a072735ec80e7675e3f432fcae8610ecf509c5f1869d17e2eecff44389cdbc58"},
1280
  {file = "sphinxcontrib_applehelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:806111e5e962be97c29ec4c1e7fe277bfd19e9652fb1a4392105b43e01af885a"},
@@ -1307,57 +1100,42 @@ tomli = [
1307
  {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"},
1308
  {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
1309
  ]
1310
- tomlkit = [
1311
- {file = "tomlkit-0.7.0-py2.py3-none-any.whl", hash = "sha256:6babbd33b17d5c9691896b0e68159215a9387ebfa938aa3ac42f4a4beeb2b831"},
1312
- {file = "tomlkit-0.7.0.tar.gz", hash = "sha256:ac57f29693fab3e309ea789252fcce3061e19110085aa31af5446ca749325618"},
1313
- ]
1314
- tqdm = [
1315
- {file = "tqdm-4.63.0-py2.py3-none-any.whl", hash = "sha256:e643e071046f17139dea55b880dc9b33822ce21613b4a4f5ea57f202833dbc29"},
1316
- {file = "tqdm-4.63.0.tar.gz", hash = "sha256:1d9835ede8e394bb8c9dcbffbca02d717217113adc679236873eeaac5bc0b3cd"},
1317
- ]
1318
  twine = [
1319
  {file = "twine-3.8.0-py3-none-any.whl", hash = "sha256:d0550fca9dc19f3d5e8eadfce0c227294df0a2a951251a4385797c8a6198b7c8"},
1320
  {file = "twine-3.8.0.tar.gz", hash = "sha256:8efa52658e0ae770686a13b675569328f1fba9837e5de1867bfe5f46a9aefe19"},
1321
  ]
1322
  typed-ast = [
1323
- {file = "typed_ast-1.5.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:183b183b7771a508395d2cbffd6db67d6ad52958a5fdc99f450d954003900266"},
1324
- {file = "typed_ast-1.5.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:676d051b1da67a852c0447621fdd11c4e104827417bf216092ec3e286f7da596"},
1325
- {file = "typed_ast-1.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc2542e83ac8399752bc16e0b35e038bdb659ba237f4222616b4e83fb9654985"},
1326
- {file = "typed_ast-1.5.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:74cac86cc586db8dfda0ce65d8bcd2bf17b58668dfcc3652762f3ef0e6677e76"},
1327
- {file = "typed_ast-1.5.2-cp310-cp310-win_amd64.whl", hash = "sha256:18fe320f354d6f9ad3147859b6e16649a0781425268c4dde596093177660e71a"},
1328
- {file = "typed_ast-1.5.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:31d8c6b2df19a777bc8826770b872a45a1f30cfefcfd729491baa5237faae837"},
1329
- {file = "typed_ast-1.5.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:963a0ccc9a4188524e6e6d39b12c9ca24cc2d45a71cfdd04a26d883c922b4b78"},
1330
- {file = "typed_ast-1.5.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:0eb77764ea470f14fcbb89d51bc6bbf5e7623446ac4ed06cbd9ca9495b62e36e"},
1331
- {file = "typed_ast-1.5.2-cp36-cp36m-win_amd64.whl", hash = "sha256:294a6903a4d087db805a7656989f613371915fc45c8cc0ddc5c5a0a8ad9bea4d"},
1332
- {file = "typed_ast-1.5.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:26a432dc219c6b6f38be20a958cbe1abffcc5492821d7e27f08606ef99e0dffd"},
1333
- {file = "typed_ast-1.5.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c7407cfcad702f0b6c0e0f3e7ab876cd1d2c13b14ce770e412c0c4b9728a0f88"},
1334
- {file = "typed_ast-1.5.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f30ddd110634c2d7534b2d4e0e22967e88366b0d356b24de87419cc4410c41b7"},
1335
- {file = "typed_ast-1.5.2-cp37-cp37m-win_amd64.whl", hash = "sha256:8c08d6625bb258179b6e512f55ad20f9dfef019bbfbe3095247401e053a3ea30"},
1336
- {file = "typed_ast-1.5.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:90904d889ab8e81a956f2c0935a523cc4e077c7847a836abee832f868d5c26a4"},
1337
- {file = "typed_ast-1.5.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:bbebc31bf11762b63bf61aaae232becb41c5bf6b3461b80a4df7e791fabb3aca"},
1338
- {file = "typed_ast-1.5.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c29dd9a3a9d259c9fa19d19738d021632d673f6ed9b35a739f48e5f807f264fb"},
1339
- {file = "typed_ast-1.5.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:58ae097a325e9bb7a684572d20eb3e1809802c5c9ec7108e85da1eb6c1a3331b"},
1340
- {file = "typed_ast-1.5.2-cp38-cp38-win_amd64.whl", hash = "sha256:da0a98d458010bf4fe535f2d1e367a2e2060e105978873c04c04212fb20543f7"},
1341
- {file = "typed_ast-1.5.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:33b4a19ddc9fc551ebabca9765d54d04600c4a50eda13893dadf67ed81d9a098"},
1342
- {file = "typed_ast-1.5.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1098df9a0592dd4c8c0ccfc2e98931278a6c6c53cb3a3e2cf7e9ee3b06153344"},
1343
- {file = "typed_ast-1.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42c47c3b43fe3a39ddf8de1d40dbbfca60ac8530a36c9b198ea5b9efac75c09e"},
1344
- {file = "typed_ast-1.5.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f290617f74a610849bd8f5514e34ae3d09eafd521dceaa6cf68b3f4414266d4e"},
1345
- {file = "typed_ast-1.5.2-cp39-cp39-win_amd64.whl", hash = "sha256:df05aa5b241e2e8045f5f4367a9f6187b09c4cdf8578bb219861c4e27c443db5"},
1346
- {file = "typed_ast-1.5.2.tar.gz", hash = "sha256:525a2d4088e70a9f75b08b3f87a51acc9cde640e19cc523c7e41aa355564ae27"},
1347
- ]
1348
- typing-extensions = [
1349
- {file = "typing_extensions-4.1.1-py3-none-any.whl", hash = "sha256:21c85e0fe4b9a155d0799430b0ad741cdce7e359660ccbd8b530613e8df88ce2"},
1350
- {file = "typing_extensions-4.1.1.tar.gz", hash = "sha256:1a9462dcc3347a79b1f1c0271fbe79e844580bb598bafa1ed208b94da3cdcd42"},
1351
- ]
1352
- urllib3 = [
1353
- {file = "urllib3-1.26.8-py2.py3-none-any.whl", hash = "sha256:000ca7f471a233c2251c6c7023ee85305721bfdf18621ebff4fd17a8653427ed"},
1354
- {file = "urllib3-1.26.8.tar.gz", hash = "sha256:0e7c33d9a63e7ddfcb86780aac87befc2fbddf46c58dbb487e0855f7ceec283c"},
1355
- ]
1356
  webencodings = [
1357
  {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"},
1358
  {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"},
1359
  ]
1360
- zipp = [
1361
- {file = "zipp-3.7.0-py3-none-any.whl", hash = "sha256:b47250dd24f92b7dd6a0a8fc5244da14608f3ca90a5efcd37a3b1642fac9a375"},
1362
- {file = "zipp-3.7.0.tar.gz", hash = "sha256:9f50f446828eb9d45b267433fd3e9da8d801f614129124863f9c51ebceafb87d"},
1363
- ]
 
8
 
9
  [[package]]
10
  name = "atomicwrites"
11
+ version = "1.4.1"
12
  description = "Atomic file writes."
13
  category = "dev"
14
  optional = false
 
16
 
17
  [[package]]
18
  name = "attrs"
19
+ version = "22.1.0"
20
  description = "Classes Without Boilerplate"
21
  category = "dev"
22
  optional = false
23
+ python-versions = ">=3.5"
24
 
25
  [package.extras]
26
+ dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "zope.interface", "furo", "sphinx", "sphinx-notfound-page", "pre-commit", "cloudpickle"]
27
  docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"]
28
+ tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "zope.interface", "cloudpickle"]
29
+ tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "cloudpickle"]
30
 
31
  [[package]]
32
  name = "babel"
33
+ version = "2.10.3"
34
  description = "Internationalization utilities"
35
  category = "dev"
36
  optional = false
37
+ python-versions = ">=3.6"
38
 
39
  [package.dependencies]
40
  pytz = ">=2015.7"
41
 
42
  [[package]]
43
  name = "beautifulsoup4"
44
+ version = "4.11.1"
45
  description = "Screen-scraping library"
46
  category = "main"
47
  optional = false
48
+ python-versions = ">=3.6.0"
49
 
50
  [package.dependencies]
51
  soupsieve = ">1.2"
 
56
 
57
  [[package]]
58
  name = "black"
59
+ version = "22.8.0"
60
  description = "The uncompromising code formatter."
61
  category = "dev"
62
  optional = false
 
67
  mypy-extensions = ">=0.4.3"
68
  pathspec = ">=0.9.0"
69
  platformdirs = ">=2"
70
+ tomli = {version = ">=1.1.0", markers = "python_full_version < \"3.11.0a7\""}
71
  typed-ast = {version = ">=1.4.2", markers = "python_version < \"3.8\" and implementation_name == \"cpython\""}
72
  typing-extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""}
73
 
 
79
 
80
  [[package]]
81
  name = "bleach"
82
+ version = "5.0.1"
83
  description = "An easy safelist-based HTML-sanitizing tool."
84
  category = "dev"
85
  optional = false
86
+ python-versions = ">=3.7"
87
 
88
  [package.dependencies]
 
89
  six = ">=1.9.0"
90
  webencodings = "*"
91
 
92
+ [package.extras]
93
+ css = ["tinycss2 (>=1.1.0,<1.2)"]
94
+ dev = ["build (==0.8.0)", "flake8 (==4.0.1)", "hashin (==0.17.0)", "pip-tools (==6.6.2)", "pytest (==7.1.2)", "Sphinx (==4.3.2)", "tox (==3.25.0)", "twine (==4.0.1)", "wheel (==0.37.1)", "black (==22.3.0)", "mypy (==0.961)"]
95
+
96
  [[package]]
97
  name = "certifi"
98
+ version = "2022.9.14"
99
  description = "Python package for providing Mozilla's CA Bundle."
100
  category = "main"
101
  optional = false
102
+ python-versions = ">=3.6"
103
 
104
  [[package]]
105
  name = "cffi"
106
+ version = "1.15.1"
107
  description = "Foreign Function Interface for Python calling C code."
108
  category = "dev"
109
  optional = false
 
114
 
115
  [[package]]
116
  name = "charset-normalizer"
117
+ version = "2.1.1"
118
  description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
119
  category = "main"
120
  optional = false
121
+ python-versions = ">=3.6.0"
122
 
123
  [package.extras]
124
  unicode_backport = ["unicodedata2"]
125
 
126
  [[package]]
127
  name = "click"
128
+ version = "8.1.3"
129
  description = "Composable command line interface toolkit"
130
  category = "dev"
131
  optional = false
132
+ python-versions = ">=3.7"
133
 
134
  [package.dependencies]
135
  colorama = {version = "*", markers = "platform_system == \"Windows\""}
 
137
 
138
  [[package]]
139
  name = "click-log"
140
+ version = "0.4.0"
141
  description = "Logging integration for Click"
142
  category = "dev"
143
  optional = false
 
148
 
149
  [[package]]
150
  name = "colorama"
151
+ version = "0.4.5"
152
  description = "Cross-platform colored terminal text."
153
  category = "dev"
154
  optional = false
 
167
 
168
  [[package]]
169
  name = "cryptography"
170
+ version = "38.0.1"
171
  description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
172
  category = "dev"
173
  optional = false
 
180
  docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"]
181
  docstest = ["pyenchant (>=1.6.11)", "twine (>=1.12.0)", "sphinxcontrib-spelling (>=4.0.1)"]
182
  pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"]
183
+ sdist = ["setuptools-rust (>=0.11.4)"]
184
  ssh = ["bcrypt (>=3.1.5)"]
185
+ test = ["pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-subtests", "pytest-xdist", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,!=3.79.2)"]
186
 
187
  [[package]]
188
  name = "docutils"
 
194
 
195
  [[package]]
196
  name = "dotty-dict"
197
+ version = "1.3.1"
198
  description = "Dictionary wrapper for quick access to deeply nested keys."
199
  category = "dev"
200
  optional = false
201
+ python-versions = ">=3.5,<4.0"
 
 
 
202
 
203
  [[package]]
204
  name = "gitdb"
 
225
 
226
  [[package]]
227
  name = "idna"
228
+ version = "3.4"
229
  description = "Internationalized Domain Names in Applications (IDNA)"
230
  category = "main"
231
  optional = false
 
233
 
234
  [[package]]
235
  name = "imagesize"
236
+ version = "1.4.1"
237
  description = "Getting image size from png/jpeg/jpeg2000/gif file"
238
  category = "dev"
239
  optional = false
 
241
 
242
  [[package]]
243
  name = "importlib-metadata"
244
+ version = "4.12.0"
245
  description = "Read metadata from Python packages"
246
  category = "dev"
247
  optional = false
 
254
  [package.extras]
255
  docs = ["sphinx", "jaraco.packaging (>=9)", "rst.linker (>=1.9)"]
256
  perf = ["ipython"]
257
+ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.3)", "packaging", "pyfakefs", "flufl.flake8", "pytest-perf (>=0.9.2)", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)", "importlib-resources (>=1.3)"]
258
 
259
  [[package]]
260
  name = "iniconfig"
 
266
 
267
  [[package]]
268
  name = "invoke"
269
+ version = "1.7.1"
270
  description = "Pythonic task execution"
271
  category = "dev"
272
  optional = false
 
286
  colors = ["colorama (>=0.4.3,<0.5.0)"]
287
  plugins = ["setuptools"]
288
 
289
+ [[package]]
290
+ name = "jaraco.classes"
291
+ version = "3.2.2"
292
+ description = "Utility functions for Python class constructs"
293
+ category = "dev"
294
+ optional = false
295
+ python-versions = ">=3.7"
296
+
297
+ [package.dependencies]
298
+ more-itertools = "*"
299
+
300
+ [package.extras]
301
+ docs = ["sphinx", "jaraco.packaging (>=9)", "rst.linker (>=1.9)", "jaraco.tidelift (>=1.4)"]
302
+ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)"]
303
+
304
  [[package]]
305
  name = "jeepney"
306
+ version = "0.8.0"
307
  description = "Low-level, pure Python DBus protocol wrapper."
308
  category = "dev"
309
  optional = false
310
+ python-versions = ">=3.7"
311
 
312
  [package.extras]
313
+ trio = ["async-generator", "trio"]
314
+ test = ["async-timeout", "trio", "testpath", "pytest-asyncio (>=0.17)", "pytest-trio", "pytest"]
315
 
316
  [[package]]
317
  name = "jinja2"
318
+ version = "3.1.2"
319
  description = "A very fast and expressive template engine."
320
  category = "dev"
321
  optional = false
322
+ python-versions = ">=3.7"
323
 
324
  [package.dependencies]
325
  MarkupSafe = ">=2.0"
 
329
 
330
  [[package]]
331
  name = "keyring"
332
+ version = "23.9.3"
333
  description = "Store and access your passwords safely."
334
  category = "dev"
335
  optional = false
336
  python-versions = ">=3.7"
337
 
338
  [package.dependencies]
339
+ importlib-metadata = {version = ">=3.6", markers = "python_version < \"3.10\""}
340
+ "jaraco.classes" = "*"
341
  jeepney = {version = ">=0.4.2", markers = "sys_platform == \"linux\""}
342
  pywin32-ctypes = {version = "<0.1.0 || >0.1.0,<0.1.1 || >0.1.1", markers = "sys_platform == \"win32\""}
343
  SecretStorage = {version = ">=3.2", markers = "sys_platform == \"linux\""}
344
 
345
  [package.extras]
346
+ docs = ["sphinx", "jaraco.packaging (>=9)", "rst.linker (>=1.9)", "jaraco.tidelift (>=1.4)"]
347
+ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "flake8 (<5)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)"]
348
 
349
  [[package]]
350
  name = "markupsafe"
351
+ version = "2.1.1"
352
  description = "Safely add untrusted strings to HTML/XML markup."
353
  category = "dev"
354
  optional = false
355
  python-versions = ">=3.7"
356
 
357
+ [[package]]
358
+ name = "more-itertools"
359
+ version = "8.14.0"
360
+ description = "More routines for operating on iterables, beyond itertools"
361
+ category = "dev"
362
+ optional = false
363
+ python-versions = ">=3.5"
364
+
365
  [[package]]
366
  name = "mypy-extensions"
367
  version = "0.4.3"
 
383
 
384
  [[package]]
385
  name = "pathspec"
386
+ version = "0.10.1"
387
  description = "Utility library for gitignore style pattern matching of file paths."
388
  category = "dev"
389
  optional = false
390
+ python-versions = ">=3.7"
391
 
392
  [[package]]
393
  name = "pkginfo"
394
+ version = "1.8.3"
395
  description = "Query metadatdata from sdists / bdists / installed packages."
396
  category = "dev"
397
  optional = false
398
+ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
399
 
400
  [package.extras]
401
+ testing = ["nose", "coverage"]
402
 
403
  [[package]]
404
  name = "platformdirs"
405
+ version = "2.5.2"
406
  description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
407
  category = "dev"
408
  optional = false
409
  python-versions = ">=3.7"
410
 
411
  [package.extras]
412
+ docs = ["furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx-autodoc-typehints (>=1.12)", "sphinx (>=4)"]
413
+ test = ["appdirs (==1.4.4)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)", "pytest (>=6)"]
414
 
415
  [[package]]
416
  name = "pluggy"
 
445
 
446
  [[package]]
447
  name = "pygments"
448
+ version = "2.13.0"
449
  description = "Pygments is a syntax highlighting package written in Python."
450
  category = "dev"
451
  optional = false
452
+ python-versions = ">=3.6"
453
+
454
+ [package.extras]
455
+ plugins = ["importlib-metadata"]
456
 
457
  [[package]]
458
  name = "pyparsing"
459
+ version = "3.0.9"
460
+ description = "pyparsing module - Classes and methods to define and execute parsing grammars"
461
  category = "dev"
462
  optional = false
463
+ python-versions = ">=3.6.8"
464
 
465
  [package.extras]
466
+ diagrams = ["railroad-diagrams", "jinja2"]
467
 
468
  [[package]]
469
  name = "pytest"
 
501
 
502
  [[package]]
503
  name = "python-gitlab"
504
+ version = "3.9.0"
505
  description = "Interact with GitLab API"
506
  category = "dev"
507
  optional = false
508
+ python-versions = ">=3.7.0"
509
 
510
  [package.dependencies]
511
  requests = ">=2.25.0"
512
  requests-toolbelt = ">=0.9.1"
513
 
514
  [package.extras]
515
+ autocompletion = ["argcomplete (>=1.10.0,<3)"]
516
  yaml = ["PyYaml (>=5.2)"]
517
 
518
  [[package]]
519
  name = "python-semantic-release"
520
+ version = "7.31.4"
521
  description = "Automatic Semantic Versioning for Python projects"
522
  category = "dev"
523
  optional = false
 
529
  dotty-dict = ">=1.3.0,<2"
530
  gitpython = ">=3.0.8,<4"
531
  invoke = ">=1.4.1,<2"
532
+ packaging = "*"
533
+ python-gitlab = ">=2,<4"
534
  requests = ">=2.25,<3"
535
  semver = ">=2.10,<3"
536
+ tomlkit = ">=0.10,<1.0"
537
  twine = ">=3,<4"
538
 
539
  [package.extras]
540
  dev = ["tox", "isort", "black"]
541
+ docs = ["Sphinx (==1.3.6)", "Jinja2 (==3.0.3)"]
542
  mypy = ["mypy", "types-requests"]
543
  test = ["coverage (>=5,<6)", "pytest (>=5,<6)", "pytest-xdist (>=1,<2)", "pytest-mock (>=2,<3)", "responses (==0.13.3)", "mock (==1.3.0)"]
544
 
545
  [[package]]
546
  name = "pytz"
547
+ version = "2022.2.1"
548
  description = "World timezone definitions, modern and historical"
549
  category = "dev"
550
  optional = false
 
560
 
561
  [[package]]
562
  name = "readme-renderer"
563
+ version = "37.1"
564
  description = "readme_renderer is a library for rendering \"readme\" descriptions for Warehouse"
565
  category = "dev"
566
  optional = false
567
+ python-versions = ">=3.7"
568
 
569
  [package.dependencies]
570
  bleach = ">=2.1.0"
 
576
 
577
  [[package]]
578
  name = "requests"
579
+ version = "2.28.1"
580
  description = "Python HTTP for Humans."
581
  category = "main"
582
  optional = false
583
+ python-versions = ">=3.7, <4"
584
 
585
  [package.dependencies]
586
  certifi = ">=2017.4.17"
587
+ charset-normalizer = ">=2,<3"
588
+ idna = ">=2.5,<4"
589
  urllib3 = ">=1.21.1,<1.27"
590
 
591
  [package.extras]
592
+ socks = ["PySocks (>=1.5.6,!=1.5.7)"]
593
+ use_chardet_on_py3 = ["chardet (>=3.0.2,<6)"]
594
 
595
  [[package]]
596
  name = "requests-toolbelt"
 
616
 
617
  [[package]]
618
  name = "secretstorage"
619
+ version = "3.3.3"
620
  description = "Python bindings to FreeDesktop.org Secret Service API"
621
  category = "dev"
622
  optional = false
 
634
  optional = false
635
  python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
636
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
637
  [[package]]
638
  name = "six"
639
  version = "1.16.0"
 
660
 
661
  [[package]]
662
  name = "soupsieve"
663
+ version = "2.3.2.post1"
664
  description = "A modern CSS selector implementation for Beautiful Soup."
665
  category = "main"
666
  optional = false
 
668
 
669
  [[package]]
670
  name = "sphinx"
671
+ version = "4.5.0"
672
  description = "Python documentation generator"
673
  category = "dev"
674
  optional = false
 
787
 
788
  [[package]]
789
  name = "tomlkit"
790
+ version = "0.11.4"
791
  description = "Style preserving TOML library"
792
  category = "dev"
793
  optional = false
794
+ python-versions = ">=3.6,<4.0"
795
 
796
  [[package]]
797
  name = "tqdm"
798
+ version = "4.64.1"
799
  description = "Fast, Extensible Progress Meter"
800
  category = "dev"
801
  optional = false
 
807
  [package.extras]
808
  dev = ["py-make (>=0.1.0)", "twine", "wheel"]
809
  notebook = ["ipywidgets (>=6)"]
810
+ slack = ["slack-sdk"]
811
  telegram = ["requests"]
812
 
813
  [[package]]
 
832
 
833
  [[package]]
834
  name = "typed-ast"
835
+ version = "1.5.4"
836
  description = "a fork of Python 2 and 3 ast modules with type comment support"
837
  category = "dev"
838
  optional = false
 
840
 
841
  [[package]]
842
  name = "typing-extensions"
843
+ version = "4.3.0"
844
+ description = "Backported and Experimental Type Hints for Python 3.7+"
845
  category = "dev"
846
  optional = false
847
+ python-versions = ">=3.7"
848
 
849
  [[package]]
850
  name = "urllib3"
851
+ version = "1.26.12"
852
  description = "HTTP library with thread-safe connection pooling, file post, and more."
853
  category = "main"
854
  optional = false
855
+ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4"
856
 
857
  [package.extras]
858
+ brotli = ["brotlicffi (>=0.8.0)", "brotli (>=1.0.9)", "brotlipy (>=0.6.0)"]
859
+ secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "urllib3-secure-extra", "ipaddress"]
860
  socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
861
 
862
  [[package]]
 
869
 
870
  [[package]]
871
  name = "zipp"
872
+ version = "3.8.1"
873
  description = "Backport of pathlib-compatible object wrapper for zip files"
874
  category = "dev"
875
  optional = false
876
  python-versions = ">=3.7"
877
 
878
  [package.extras]
879
+ docs = ["sphinx", "jaraco.packaging (>=9)", "rst.linker (>=1.9)", "jaraco.tidelift (>=1.4)"]
880
+ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.3)", "jaraco.itertools", "func-timeout", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)"]
881
 
882
  [metadata]
883
  lock-version = "1.1"
884
  python-versions = "^3.7"
885
+ content-hash = "3172beea1e5ee6cc7b80306b20e8c4a97ee81fa7ded369e76481f6c6e7379200"
886
 
887
  [metadata.files]
888
  alabaster = [
889
  {file = "alabaster-0.7.12-py2.py3-none-any.whl", hash = "sha256:446438bdcca0e05bd45ea2de1668c1d9b032e1a9154c2c259092d77031ddd359"},
890
  {file = "alabaster-0.7.12.tar.gz", hash = "sha256:a661d72d58e6ea8a57f7a86e37d86716863ee5e92788398526d58b26a4e4dc02"},
891
  ]
892
+ atomicwrites = []
893
+ attrs = []
894
+ babel = []
895
+ beautifulsoup4 = []
896
+ black = []
897
+ bleach = []
898
+ certifi = []
899
+ cffi = []
900
+ charset-normalizer = []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
901
  click = [
902
+ {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"},
903
+ {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"},
 
 
 
 
904
  ]
905
+ click-log = []
906
  colorama = [
907
+ {file = "colorama-0.4.5-py2.py3-none-any.whl", hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"},
908
+ {file = "colorama-0.4.5.tar.gz", hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"},
909
  ]
910
  coverage = [
911
  {file = "coverage-5.5-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:b6d534e4b2ab35c9f93f46229363e17f63c53ad01330df9f2d6bd1187e5eaacf"},
 
961
  {file = "coverage-5.5-pp37-none-any.whl", hash = "sha256:2a3859cb82dcbda1cfd3e6f71c27081d18aa251d20a17d87d26d4cd216fb0af4"},
962
  {file = "coverage-5.5.tar.gz", hash = "sha256:ebe78fe9a0e874362175b02371bdfbee64d8edc42a044253ddf4ee7d3c15212c"},
963
  ]
964
+ cryptography = []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
965
  docutils = [
966
  {file = "docutils-0.17.1-py2.py3-none-any.whl", hash = "sha256:cf316c8370a737a022b72b56874f6602acf974a37a9fba42ec2876387549fc61"},
967
  {file = "docutils-0.17.1.tar.gz", hash = "sha256:686577d2e4c32380bb50cbb22f575ed742d58168cee37e99117a854bcd88f125"},
968
  ]
969
+ dotty-dict = []
 
 
970
  gitdb = [
971
  {file = "gitdb-4.0.9-py3-none-any.whl", hash = "sha256:8033ad4e853066ba6ca92050b9df2f89301b8fc8bf7e9324d412a63f8bf1a8fd"},
972
  {file = "gitdb-4.0.9.tar.gz", hash = "sha256:bac2fd45c0a1c9cf619e63a90d62bdc63892ef92387424b855792a6cabe789aa"},
 
975
  {file = "GitPython-3.1.27-py3-none-any.whl", hash = "sha256:5b68b000463593e05ff2b261acff0ff0972df8ab1b70d3cdbd41b546c8b8fc3d"},
976
  {file = "GitPython-3.1.27.tar.gz", hash = "sha256:1c885ce809e8ba2d88a29befeb385fcea06338d3640712b59ca623c220bb5704"},
977
  ]
978
+ idna = []
979
+ imagesize = []
980
+ importlib-metadata = []
 
 
 
 
 
 
 
 
 
981
  iniconfig = [
982
  {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"},
983
  {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"},
984
  ]
985
+ invoke = []
 
 
 
 
986
  isort = [
987
  {file = "isort-5.10.1-py3-none-any.whl", hash = "sha256:6f62d78e2f89b4500b080fe3a81690850cd254227f27f75c3a0c491a1f351ba7"},
988
  {file = "isort-5.10.1.tar.gz", hash = "sha256:e8443a5e7a020e9d7f97f1d7d9cd17c88bcb3bc7e218bf9cf5095fe550be2951"},
989
  ]
990
+ "jaraco.classes" = []
991
+ jeepney = []
992
+ jinja2 = []
993
+ keyring = []
994
+ markupsafe = []
995
+ more-itertools = []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
996
  mypy-extensions = [
997
  {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"},
998
  {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"},
 
1001
  {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"},
1002
  {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"},
1003
  ]
1004
+ pathspec = []
1005
+ pkginfo = []
 
 
 
 
 
 
1006
  platformdirs = [
1007
+ {file = "platformdirs-2.5.2-py3-none-any.whl", hash = "sha256:027d8e83a2d7de06bbac4e5ef7e023c02b863d7ea5d079477e722bb41ab25788"},
1008
+ {file = "platformdirs-2.5.2.tar.gz", hash = "sha256:58c8abb07dcb441e6ee4b11d8df0ac856038f944ab98b7be6b27b2a3c7feef19"},
1009
  ]
1010
  pluggy = [
1011
  {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"},
 
1019
  {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"},
1020
  {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"},
1021
  ]
1022
+ pygments = []
 
 
 
1023
  pyparsing = [
1024
+ {file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"},
1025
+ {file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"},
1026
  ]
1027
  pytest = [
1028
  {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"},
 
1032
  {file = "pytest-runner-5.3.2.tar.gz", hash = "sha256:48934ec94301f6727d30615af1960539ff62063f6c9b71b7227174e51ba5fb34"},
1033
  {file = "pytest_runner-5.3.2-py3-none-any.whl", hash = "sha256:c7d785ea6c612396c11ddbaf467764d2cc746ef96a713fbe1a296c221503b7c3"},
1034
  ]
1035
+ python-gitlab = []
1036
+ python-semantic-release = []
1037
+ pytz = []
 
 
 
 
 
 
 
 
 
1038
  pywin32-ctypes = [
1039
  {file = "pywin32-ctypes-0.2.0.tar.gz", hash = "sha256:24ffc3b341d457d48e8922352130cf2644024a4ff09762a2261fd34c36ee5942"},
1040
  {file = "pywin32_ctypes-0.2.0-py2.py3-none-any.whl", hash = "sha256:9dc2d991b3479cc2df15930958b674a48a227d5361d413827a4cfd0b5876fc98"},
1041
  ]
1042
+ readme-renderer = []
1043
+ requests = []
 
 
 
 
 
 
1044
  requests-toolbelt = [
1045
  {file = "requests-toolbelt-0.9.1.tar.gz", hash = "sha256:968089d4584ad4ad7c171454f0a5c6dac23971e9472521ea3b6d49d610aa6fc0"},
1046
  {file = "requests_toolbelt-0.9.1-py2.py3-none-any.whl", hash = "sha256:380606e1d10dc85c3bd47bf5a6095f815ec007be7a8b69c878507068df059e6f"},
 
1049
  {file = "rfc3986-2.0.0-py2.py3-none-any.whl", hash = "sha256:50b1502b60e289cb37883f3dfd34532b8873c7de9f49bb546641ce9cbd256ebd"},
1050
  {file = "rfc3986-2.0.0.tar.gz", hash = "sha256:97aacf9dbd4bfd829baad6e6309fa6573aaf1be3f6fa735c8ab05e46cecb261c"},
1051
  ]
1052
+ secretstorage = []
 
 
 
1053
  semver = [
1054
  {file = "semver-2.13.0-py2.py3-none-any.whl", hash = "sha256:ced8b23dceb22134307c1b8abfa523da14198793d9787ac838e70e29e77458d4"},
1055
  {file = "semver-2.13.0.tar.gz", hash = "sha256:fa0fe2722ee1c3f57eac478820c3a5ae2f624af8264cbdf9000c980ff7f75e3f"},
1056
  ]
 
 
 
 
1057
  six = [
1058
  {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
1059
  {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
 
1066
  {file = "snowballstemmer-2.2.0-py2.py3-none-any.whl", hash = "sha256:c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a"},
1067
  {file = "snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1"},
1068
  ]
1069
+ soupsieve = []
1070
+ sphinx = []
 
 
 
 
 
 
1071
  sphinxcontrib-applehelp = [
1072
  {file = "sphinxcontrib-applehelp-1.0.2.tar.gz", hash = "sha256:a072735ec80e7675e3f432fcae8610ecf509c5f1869d17e2eecff44389cdbc58"},
1073
  {file = "sphinxcontrib_applehelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:806111e5e962be97c29ec4c1e7fe277bfd19e9652fb1a4392105b43e01af885a"},
 
1100
  {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"},
1101
  {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
1102
  ]
1103
+ tomlkit = []
1104
+ tqdm = []
 
 
 
 
 
 
1105
  twine = [
1106
  {file = "twine-3.8.0-py3-none-any.whl", hash = "sha256:d0550fca9dc19f3d5e8eadfce0c227294df0a2a951251a4385797c8a6198b7c8"},
1107
  {file = "twine-3.8.0.tar.gz", hash = "sha256:8efa52658e0ae770686a13b675569328f1fba9837e5de1867bfe5f46a9aefe19"},
1108
  ]
1109
  typed-ast = [
1110
+ {file = "typed_ast-1.5.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:669dd0c4167f6f2cd9f57041e03c3c2ebf9063d0757dc89f79ba1daa2bfca9d4"},
1111
+ {file = "typed_ast-1.5.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:211260621ab1cd7324e0798d6be953d00b74e0428382991adfddb352252f1d62"},
1112
+ {file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:267e3f78697a6c00c689c03db4876dd1efdfea2f251a5ad6555e82a26847b4ac"},
1113
+ {file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c542eeda69212fa10a7ada75e668876fdec5f856cd3d06829e6aa64ad17c8dfe"},
1114
+ {file = "typed_ast-1.5.4-cp310-cp310-win_amd64.whl", hash = "sha256:a9916d2bb8865f973824fb47436fa45e1ebf2efd920f2b9f99342cb7fab93f72"},
1115
+ {file = "typed_ast-1.5.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:79b1e0869db7c830ba6a981d58711c88b6677506e648496b1f64ac7d15633aec"},
1116
+ {file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a94d55d142c9265f4ea46fab70977a1944ecae359ae867397757d836ea5a3f47"},
1117
+ {file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:183afdf0ec5b1b211724dfef3d2cad2d767cbefac291f24d69b00546c1837fb6"},
1118
+ {file = "typed_ast-1.5.4-cp36-cp36m-win_amd64.whl", hash = "sha256:639c5f0b21776605dd6c9dbe592d5228f021404dafd377e2b7ac046b0349b1a1"},
1119
+ {file = "typed_ast-1.5.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cf4afcfac006ece570e32d6fa90ab74a17245b83dfd6655a6f68568098345ff6"},
1120
+ {file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed855bbe3eb3715fca349c80174cfcfd699c2f9de574d40527b8429acae23a66"},
1121
+ {file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6778e1b2f81dfc7bc58e4b259363b83d2e509a65198e85d5700dfae4c6c8ff1c"},
1122
+ {file = "typed_ast-1.5.4-cp37-cp37m-win_amd64.whl", hash = "sha256:0261195c2062caf107831e92a76764c81227dae162c4f75192c0d489faf751a2"},
1123
+ {file = "typed_ast-1.5.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2efae9db7a8c05ad5547d522e7dbe62c83d838d3906a3716d1478b6c1d61388d"},
1124
+ {file = "typed_ast-1.5.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7d5d014b7daa8b0bf2eaef684295acae12b036d79f54178b92a2b6a56f92278f"},
1125
+ {file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:370788a63915e82fd6f212865a596a0fefcbb7d408bbbb13dea723d971ed8bdc"},
1126
+ {file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4e964b4ff86550a7a7d56345c7864b18f403f5bd7380edf44a3c1fb4ee7ac6c6"},
1127
+ {file = "typed_ast-1.5.4-cp38-cp38-win_amd64.whl", hash = "sha256:683407d92dc953c8a7347119596f0b0e6c55eb98ebebd9b23437501b28dcbb8e"},
1128
+ {file = "typed_ast-1.5.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4879da6c9b73443f97e731b617184a596ac1235fe91f98d279a7af36c796da35"},
1129
+ {file = "typed_ast-1.5.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3e123d878ba170397916557d31c8f589951e353cc95fb7f24f6bb69adc1a8a97"},
1130
+ {file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebd9d7f80ccf7a82ac5f88c521115cc55d84e35bf8b446fcd7836eb6b98929a3"},
1131
+ {file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98f80dee3c03455e92796b58b98ff6ca0b2a6f652120c263efdba4d6c5e58f72"},
1132
+ {file = "typed_ast-1.5.4-cp39-cp39-win_amd64.whl", hash = "sha256:0fdbcf2fef0ca421a3f5912555804296f0b0960f0418c440f5d6d3abb549f3e1"},
1133
+ {file = "typed_ast-1.5.4.tar.gz", hash = "sha256:39e21ceb7388e4bb37f4c679d72707ed46c2fbf2a5609b8b8ebc4b067d977df2"},
1134
+ ]
1135
+ typing-extensions = []
1136
+ urllib3 = []
 
 
 
 
 
 
1137
  webencodings = [
1138
  {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"},
1139
  {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"},
1140
  ]
1141
+ zipp = []
 
 
 
pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
  [tool.poetry]
2
  name = "deep-translator"
3
- version = "1.8.3"
4
  description = "A flexible free and unlimited python tool to translate between different languages in a simple way using multiple translators"
5
  license = "MIT"
6
  authors = ["Nidhal Baccouri <[email protected]>"]
@@ -33,7 +33,7 @@ beautifulsoup4 = "^4.9.1"
33
  requests = "^2.23.0"
34
 
35
  [tool.poetry.dev-dependencies]
36
- wheel = "flake8"
37
  coverage = "^5.5"
38
  Sphinx = "^4.1.1"
39
  twine = "^3.4.2"
 
1
  [tool.poetry]
2
  name = "deep-translator"
3
+ version = "1.9.0"
4
  description = "A flexible free and unlimited python tool to translate between different languages in a simple way using multiple translators"
5
  license = "MIT"
6
  authors = ["Nidhal Baccouri <[email protected]>"]
 
33
  requests = "^2.23.0"
34
 
35
  [tool.poetry.dev-dependencies]
36
+ wheel = "^0.37.1"
37
  coverage = "^5.5"
38
  Sphinx = "^4.1.1"
39
  twine = "^3.4.2"