You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1516 lines
73 KiB

  1. [[package]]
  2. name = "alabaster"
  3. version = "0.7.12"
  4. description = "A configurable sidebar-enabled Sphinx theme"
  5. category = "main"
  6. optional = true
  7. python-versions = "*"
  8. [[package]]
  9. name = "argcomplete"
  10. version = "1.12.3"
  11. description = "Bash tab completion for argparse"
  12. category = "dev"
  13. optional = false
  14. python-versions = "*"
  15. [package.dependencies]
  16. importlib-metadata = {version = ">=0.23,<5", markers = "python_version == \"3.7\""}
  17. [package.extras]
  18. test = ["coverage", "flake8", "pexpect", "wheel"]
  19. [[package]]
  20. name = "astroid"
  21. version = "2.11.7"
  22. description = "An abstract syntax tree for Python with inference support."
  23. category = "main"
  24. optional = true
  25. python-versions = ">=3.6.2"
  26. [package.dependencies]
  27. lazy-object-proxy = ">=1.4.0"
  28. typed-ast = {version = ">=1.4.0,<2.0", markers = "implementation_name == \"cpython\" and python_version < \"3.8\""}
  29. typing-extensions = {version = ">=3.10", markers = "python_version < \"3.10\""}
  30. wrapt = ">=1.11,<2"
  31. [[package]]
  32. name = "atomicwrites"
  33. version = "1.4.1"
  34. description = "Atomic file writes."
  35. category = "dev"
  36. optional = false
  37. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  38. [[package]]
  39. name = "attrs"
  40. version = "22.1.0"
  41. description = "Classes Without Boilerplate"
  42. category = "dev"
  43. optional = false
  44. python-versions = ">=3.5"
  45. [package.extras]
  46. 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"]
  47. docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"]
  48. tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "zope.interface", "cloudpickle"]
  49. tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "cloudpickle"]
  50. [[package]]
  51. name = "babel"
  52. version = "2.10.3"
  53. description = "Internationalization utilities"
  54. category = "main"
  55. optional = true
  56. python-versions = ">=3.6"
  57. [package.dependencies]
  58. pytz = ">=2015.7"
  59. [[package]]
  60. name = "black"
  61. version = "22.6.0"
  62. description = "The uncompromising code formatter."
  63. category = "dev"
  64. optional = false
  65. python-versions = ">=3.6.2"
  66. [package.dependencies]
  67. click = ">=8.0.0"
  68. mypy-extensions = ">=0.4.3"
  69. pathspec = ">=0.9.0"
  70. platformdirs = ">=2"
  71. tomli = {version = ">=1.1.0", markers = "python_full_version < \"3.11.0a7\""}
  72. typed-ast = {version = ">=1.4.2", markers = "python_version < \"3.8\" and implementation_name == \"cpython\""}
  73. typing-extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""}
  74. [package.extras]
  75. colorama = ["colorama (>=0.4.3)"]
  76. d = ["aiohttp (>=3.7.4)"]
  77. jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"]
  78. uvloop = ["uvloop (>=0.15.2)"]
  79. [[package]]
  80. name = "certifi"
  81. version = "2022.6.15"
  82. description = "Python package for providing Mozilla's CA Bundle."
  83. category = "main"
  84. optional = false
  85. python-versions = ">=3.6"
  86. [[package]]
  87. name = "cffi"
  88. version = "1.15.1"
  89. description = "Foreign Function Interface for Python calling C code."
  90. category = "dev"
  91. optional = false
  92. python-versions = "*"
  93. [package.dependencies]
  94. pycparser = "*"
  95. [[package]]
  96. name = "cfgv"
  97. version = "3.3.1"
  98. description = "Validate configuration and produce human readable error messages."
  99. category = "dev"
  100. optional = false
  101. python-versions = ">=3.6.1"
  102. [[package]]
  103. name = "chardet"
  104. version = "5.0.0"
  105. description = "Universal encoding detector for Python 3"
  106. category = "dev"
  107. optional = false
  108. python-versions = ">=3.6"
  109. [[package]]
  110. name = "charset-normalizer"
  111. version = "2.1.0"
  112. description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
  113. category = "main"
  114. optional = false
  115. python-versions = ">=3.6.0"
  116. [package.extras]
  117. unicode_backport = ["unicodedata2"]
  118. [[package]]
  119. name = "click"
  120. version = "8.1.3"
  121. description = "Composable command line interface toolkit"
  122. category = "dev"
  123. optional = false
  124. python-versions = ">=3.7"
  125. [package.dependencies]
  126. colorama = {version = "*", markers = "platform_system == \"Windows\""}
  127. importlib-metadata = {version = "*", markers = "python_version < \"3.8\""}
  128. [[package]]
  129. name = "colorama"
  130. version = "0.4.5"
  131. description = "Cross-platform colored terminal text."
  132. category = "main"
  133. optional = false
  134. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  135. [[package]]
  136. name = "commitizen"
  137. version = "2.29.2"
  138. description = "Python commitizen client tool"
  139. category = "dev"
  140. optional = false
  141. python-versions = ">=3.6.2,<4.0.0"
  142. [package.dependencies]
  143. argcomplete = ">=1.12.1,<2.0.0"
  144. chardet = ">=5.0.0,<6.0.0"
  145. colorama = ">=0.4.1,<0.5.0"
  146. decli = ">=0.5.2,<0.6.0"
  147. jinja2 = ">=2.10.3"
  148. packaging = ">=19,<22"
  149. pyyaml = ">=3.08"
  150. questionary = ">=1.4.0,<2.0.0"
  151. termcolor = ">=1.1,<2.0"
  152. tomlkit = ">=0.5.3,<1.0.0"
  153. typing-extensions = ">=4.0.1,<5.0.0"
  154. [[package]]
  155. name = "commonmark"
  156. version = "0.9.1"
  157. description = "Python parser for the CommonMark Markdown spec"
  158. category = "main"
  159. optional = true
  160. python-versions = "*"
  161. [package.extras]
  162. test = ["flake8 (==3.7.8)", "hypothesis (==3.55.3)"]
  163. [[package]]
  164. name = "coverage"
  165. version = "6.4.2"
  166. description = "Code coverage measurement for Python"
  167. category = "dev"
  168. optional = false
  169. python-versions = ">=3.7"
  170. [package.dependencies]
  171. tomli = {version = "*", optional = true, markers = "python_full_version <= \"3.11.0a6\" and extra == \"toml\""}
  172. [package.extras]
  173. toml = ["tomli"]
  174. [[package]]
  175. name = "cryptography"
  176. version = "37.0.4"
  177. description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers."
  178. category = "dev"
  179. optional = false
  180. python-versions = ">=3.6"
  181. [package.dependencies]
  182. cffi = ">=1.12"
  183. [package.extras]
  184. docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"]
  185. docstest = ["pyenchant (>=1.6.11)", "twine (>=1.12.0)", "sphinxcontrib-spelling (>=4.0.1)"]
  186. pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"]
  187. sdist = ["setuptools_rust (>=0.11.4)"]
  188. ssh = ["bcrypt (>=3.1.5)"]
  189. test = ["pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-subtests", "pytest-xdist", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,!=3.79.2)"]
  190. [[package]]
  191. name = "decli"
  192. version = "0.5.2"
  193. description = "Minimal, easy-to-use, declarative cli tool"
  194. category = "dev"
  195. optional = false
  196. python-versions = ">=3.6"
  197. [[package]]
  198. name = "distlib"
  199. version = "0.3.5"
  200. description = "Distribution utilities"
  201. category = "dev"
  202. optional = false
  203. python-versions = "*"
  204. [[package]]
  205. name = "docutils"
  206. version = "0.17.1"
  207. description = "Docutils -- Python Documentation Utilities"
  208. category = "main"
  209. optional = true
  210. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  211. [[package]]
  212. name = "ecdsa"
  213. version = "0.18.0"
  214. description = "ECDSA cryptographic signature library (pure python)"
  215. category = "main"
  216. optional = false
  217. python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
  218. [package.dependencies]
  219. six = ">=1.9.0"
  220. [package.extras]
  221. gmpy = ["gmpy"]
  222. gmpy2 = ["gmpy2"]
  223. [[package]]
  224. name = "filelock"
  225. version = "3.7.1"
  226. description = "A platform independent file lock."
  227. category = "dev"
  228. optional = false
  229. python-versions = ">=3.7"
  230. [package.extras]
  231. docs = ["furo (>=2021.8.17b43)", "sphinx (>=4.1)", "sphinx-autodoc-typehints (>=1.12)"]
  232. testing = ["covdefaults (>=1.2.0)", "coverage (>=4)", "pytest (>=4)", "pytest-cov", "pytest-timeout (>=1.4.2)"]
  233. [[package]]
  234. name = "flake8"
  235. version = "3.9.2"
  236. description = "the modular source code checker: pep8 pyflakes and co"
  237. category = "dev"
  238. optional = false
  239. python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
  240. [package.dependencies]
  241. importlib-metadata = {version = "*", markers = "python_version < \"3.8\""}
  242. mccabe = ">=0.6.0,<0.7.0"
  243. pycodestyle = ">=2.7.0,<2.8.0"
  244. pyflakes = ">=2.3.0,<2.4.0"
  245. [[package]]
  246. name = "flake8-docstrings"
  247. version = "1.6.0"
  248. description = "Extension for flake8 which uses pydocstyle to check docstrings"
  249. category = "dev"
  250. optional = false
  251. python-versions = "*"
  252. [package.dependencies]
  253. flake8 = ">=3"
  254. pydocstyle = ">=2.1"
  255. [[package]]
  256. name = "identify"
  257. version = "2.5.2"
  258. description = "File identification library for Python"
  259. category = "dev"
  260. optional = false
  261. python-versions = ">=3.7"
  262. [package.extras]
  263. license = ["ukkonen"]
  264. [[package]]
  265. name = "idna"
  266. version = "3.3"
  267. description = "Internationalized Domain Names in Applications (IDNA)"
  268. category = "main"
  269. optional = false
  270. python-versions = ">=3.5"
  271. [[package]]
  272. name = "imagesize"
  273. version = "1.4.1"
  274. description = "Getting image size from png/jpeg/jpeg2000/gif file"
  275. category = "main"
  276. optional = true
  277. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  278. [[package]]
  279. name = "importlib-metadata"
  280. version = "4.12.0"
  281. description = "Read metadata from Python packages"
  282. category = "main"
  283. optional = false
  284. python-versions = ">=3.7"
  285. [package.dependencies]
  286. typing-extensions = {version = ">=3.6.4", markers = "python_version < \"3.8\""}
  287. zipp = ">=0.5"
  288. [package.extras]
  289. docs = ["sphinx", "jaraco.packaging (>=9)", "rst.linker (>=1.9)"]
  290. perf = ["ipython"]
  291. 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)"]
  292. [[package]]
  293. name = "iniconfig"
  294. version = "1.1.1"
  295. description = "iniconfig: brain-dead simple config-ini parsing"
  296. category = "dev"
  297. optional = false
  298. python-versions = "*"
  299. [[package]]
  300. name = "isort"
  301. version = "5.10.1"
  302. description = "A Python utility / library to sort Python imports."
  303. category = "dev"
  304. optional = false
  305. python-versions = ">=3.6.1,<4.0"
  306. [package.extras]
  307. pipfile_deprecated_finder = ["pipreqs", "requirementslib"]
  308. requirements_deprecated_finder = ["pipreqs", "pip-api"]
  309. colors = ["colorama (>=0.4.3,<0.5.0)"]
  310. plugins = ["setuptools"]
  311. [[package]]
  312. name = "jinja2"
  313. version = "3.1.2"
  314. description = "A very fast and expressive template engine."
  315. category = "main"
  316. optional = false
  317. python-versions = ">=3.7"
  318. [package.dependencies]
  319. MarkupSafe = ">=2.0"
  320. [package.extras]
  321. i18n = ["Babel (>=2.7)"]
  322. [[package]]
  323. name = "lazy-object-proxy"
  324. version = "1.7.1"
  325. description = "A fast and thorough lazy object proxy."
  326. category = "main"
  327. optional = true
  328. python-versions = ">=3.6"
  329. [[package]]
  330. name = "m2r2"
  331. version = "0.3.2"
  332. description = "Markdown and reStructuredText in a single file."
  333. category = "main"
  334. optional = true
  335. python-versions = "*"
  336. [package.dependencies]
  337. docutils = "*"
  338. mistune = "0.8.4"
  339. [[package]]
  340. name = "markupsafe"
  341. version = "2.1.1"
  342. description = "Safely add untrusted strings to HTML/XML markup."
  343. category = "main"
  344. optional = false
  345. python-versions = ">=3.7"
  346. [[package]]
  347. name = "mccabe"
  348. version = "0.6.1"
  349. description = "McCabe checker, plugin for flake8"
  350. category = "dev"
  351. optional = false
  352. python-versions = "*"
  353. [[package]]
  354. name = "mistune"
  355. version = "0.8.4"
  356. description = "The fastest markdown parser in pure Python"
  357. category = "main"
  358. optional = true
  359. python-versions = "*"
  360. [[package]]
  361. name = "mock"
  362. version = "4.0.3"
  363. description = "Rolling backport of unittest.mock for all Pythons"
  364. category = "main"
  365. optional = true
  366. python-versions = ">=3.6"
  367. [package.extras]
  368. build = ["twine", "wheel", "blurb"]
  369. docs = ["sphinx"]
  370. test = ["pytest (<5.4)", "pytest-cov"]
  371. [[package]]
  372. name = "mypy-extensions"
  373. version = "0.4.3"
  374. description = "Experimental type system extensions for programs checked with the mypy typechecker."
  375. category = "dev"
  376. optional = false
  377. python-versions = "*"
  378. [[package]]
  379. name = "nodeenv"
  380. version = "1.7.0"
  381. description = "Node.js virtual environment builder"
  382. category = "dev"
  383. optional = false
  384. python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*"
  385. [[package]]
  386. name = "packaging"
  387. version = "21.3"
  388. description = "Core utilities for Python packages"
  389. category = "main"
  390. optional = false
  391. python-versions = ">=3.6"
  392. [package.dependencies]
  393. pyparsing = ">=2.0.2,<3.0.5 || >3.0.5"
  394. [[package]]
  395. name = "pathspec"
  396. version = "0.9.0"
  397. description = "Utility library for gitignore style pattern matching of file paths."
  398. category = "dev"
  399. optional = false
  400. python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
  401. [[package]]
  402. name = "platformdirs"
  403. version = "2.5.2"
  404. description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
  405. category = "dev"
  406. optional = false
  407. python-versions = ">=3.7"
  408. [package.extras]
  409. docs = ["furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx-autodoc-typehints (>=1.12)", "sphinx (>=4)"]
  410. test = ["appdirs (==1.4.4)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)", "pytest (>=6)"]
  411. [[package]]
  412. name = "pluggy"
  413. version = "1.0.0"
  414. description = "plugin and hook calling mechanisms for python"
  415. category = "dev"
  416. optional = false
  417. python-versions = ">=3.6"
  418. [package.dependencies]
  419. importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""}
  420. [package.extras]
  421. dev = ["pre-commit", "tox"]
  422. testing = ["pytest", "pytest-benchmark"]
  423. [[package]]
  424. name = "pre-commit"
  425. version = "2.20.0"
  426. description = "A framework for managing and maintaining multi-language pre-commit hooks."
  427. category = "dev"
  428. optional = false
  429. python-versions = ">=3.7"
  430. [package.dependencies]
  431. cfgv = ">=2.0.0"
  432. identify = ">=1.0.0"
  433. importlib-metadata = {version = "*", markers = "python_version < \"3.8\""}
  434. nodeenv = ">=0.11.1"
  435. pyyaml = ">=5.1"
  436. toml = "*"
  437. virtualenv = ">=20.0.8"
  438. [[package]]
  439. name = "prompt-toolkit"
  440. version = "3.0.30"
  441. description = "Library for building powerful interactive command lines in Python"
  442. category = "dev"
  443. optional = false
  444. python-versions = ">=3.6.2"
  445. [package.dependencies]
  446. wcwidth = "*"
  447. [[package]]
  448. name = "py"
  449. version = "1.11.0"
  450. description = "library with cross-python path, ini-parsing, io, code, log facilities"
  451. category = "dev"
  452. optional = false
  453. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
  454. [[package]]
  455. name = "pyasn1"
  456. version = "0.4.8"
  457. description = "ASN.1 types and codecs"
  458. category = "main"
  459. optional = false
  460. python-versions = "*"
  461. [[package]]
  462. name = "pycodestyle"
  463. version = "2.7.0"
  464. description = "Python style guide checker"
  465. category = "dev"
  466. optional = false
  467. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  468. [[package]]
  469. name = "pycparser"
  470. version = "2.21"
  471. description = "C parser in Python"
  472. category = "dev"
  473. optional = false
  474. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  475. [[package]]
  476. name = "pydocstyle"
  477. version = "6.1.1"
  478. description = "Python docstring style checker"
  479. category = "dev"
  480. optional = false
  481. python-versions = ">=3.6"
  482. [package.dependencies]
  483. snowballstemmer = "*"
  484. [package.extras]
  485. toml = ["toml"]
  486. [[package]]
  487. name = "pyflakes"
  488. version = "2.3.1"
  489. description = "passive checker of Python programs"
  490. category = "dev"
  491. optional = false
  492. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
  493. [[package]]
  494. name = "pygments"
  495. version = "2.12.0"
  496. description = "Pygments is a syntax highlighting package written in Python."
  497. category = "main"
  498. optional = true
  499. python-versions = ">=3.6"
  500. [[package]]
  501. name = "pyparsing"
  502. version = "3.0.9"
  503. description = "pyparsing module - Classes and methods to define and execute parsing grammars"
  504. category = "main"
  505. optional = false
  506. python-versions = ">=3.6.8"
  507. [package.extras]
  508. diagrams = ["railroad-diagrams", "jinja2"]
  509. [[package]]
  510. name = "pytest"
  511. version = "7.1.2"
  512. description = "pytest: simple powerful testing with Python"
  513. category = "dev"
  514. optional = false
  515. python-versions = ">=3.7"
  516. [package.dependencies]
  517. atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""}
  518. attrs = ">=19.2.0"
  519. colorama = {version = "*", markers = "sys_platform == \"win32\""}
  520. importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""}
  521. iniconfig = "*"
  522. packaging = "*"
  523. pluggy = ">=0.12,<2.0"
  524. py = ">=1.8.2"
  525. tomli = ">=1.0.0"
  526. [package.extras]
  527. testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"]
  528. [[package]]
  529. name = "pytest-cov"
  530. version = "3.0.0"
  531. description = "Pytest plugin for measuring coverage."
  532. category = "dev"
  533. optional = false
  534. python-versions = ">=3.6"
  535. [package.dependencies]
  536. coverage = {version = ">=5.2.1", extras = ["toml"]}
  537. pytest = ">=4.6"
  538. [package.extras]
  539. testing = ["fields", "hunter", "process-tests", "six", "pytest-xdist", "virtualenv"]
  540. [[package]]
  541. name = "python-jose"
  542. version = "3.3.0"
  543. description = "JOSE implementation in Python"
  544. category = "main"
  545. optional = false
  546. python-versions = "*"
  547. [package.dependencies]
  548. ecdsa = "!=0.15"
  549. pyasn1 = "*"
  550. rsa = "*"
  551. [package.extras]
  552. cryptography = ["cryptography (>=3.4.0)"]
  553. pycrypto = ["pycrypto (>=2.6.0,<2.7.0)", "pyasn1"]
  554. pycryptodome = ["pycryptodome (>=3.3.1,<4.0.0)", "pyasn1"]
  555. [[package]]
  556. name = "pytz"
  557. version = "2022.1"
  558. description = "World timezone definitions, modern and historical"
  559. category = "main"
  560. optional = true
  561. python-versions = "*"
  562. [[package]]
  563. name = "pyyaml"
  564. version = "6.0"
  565. description = "YAML parser and emitter for Python"
  566. category = "main"
  567. optional = false
  568. python-versions = ">=3.6"
  569. [[package]]
  570. name = "questionary"
  571. version = "1.10.0"
  572. description = "Python library to build pretty command line user prompts ⭐️"
  573. category = "dev"
  574. optional = false
  575. python-versions = ">=3.6,<4.0"
  576. [package.dependencies]
  577. prompt_toolkit = ">=2.0,<4.0"
  578. [package.extras]
  579. docs = ["Sphinx (>=3.3,<4.0)", "sphinx-rtd-theme (>=0.5.0,<0.6.0)", "sphinx-autobuild (>=2020.9.1,<2021.0.0)", "sphinx-copybutton (>=0.3.1,<0.4.0)", "sphinx-autodoc-typehints (>=1.11.1,<2.0.0)"]
  580. [[package]]
  581. name = "readthedocs-sphinx-ext"
  582. version = "2.1.8"
  583. description = "Sphinx extension for Read the Docs overrides"
  584. category = "main"
  585. optional = true
  586. python-versions = "*"
  587. [package.dependencies]
  588. Jinja2 = ">=2.9"
  589. packaging = "*"
  590. requests = "*"
  591. [[package]]
  592. name = "recommonmark"
  593. version = "0.7.1"
  594. description = "A docutils-compatibility bridge to CommonMark, enabling you to write CommonMark inside of Docutils & Sphinx projects."
  595. category = "main"
  596. optional = true
  597. python-versions = "*"
  598. [package.dependencies]
  599. commonmark = ">=0.8.1"
  600. docutils = ">=0.11"
  601. sphinx = ">=1.3.1"
  602. [[package]]
  603. name = "requests"
  604. version = "2.28.1"
  605. description = "Python HTTP for Humans."
  606. category = "main"
  607. optional = false
  608. python-versions = ">=3.7, <4"
  609. [package.dependencies]
  610. certifi = ">=2017.4.17"
  611. charset-normalizer = ">=2,<3"
  612. idna = ">=2.5,<4"
  613. urllib3 = ">=1.21.1,<1.27"
  614. [package.extras]
  615. socks = ["PySocks (>=1.5.6,!=1.5.7)"]
  616. use_chardet_on_py3 = ["chardet (>=3.0.2,<6)"]
  617. [[package]]
  618. name = "requests-toolbelt"
  619. version = "0.9.1"
  620. description = "A utility belt for advanced users of python-requests"
  621. category = "main"
  622. optional = false
  623. python-versions = "*"
  624. [package.dependencies]
  625. requests = ">=2.0.1,<3.0.0"
  626. [[package]]
  627. name = "rsa"
  628. version = "4.9"
  629. description = "Pure-Python RSA implementation"
  630. category = "main"
  631. optional = false
  632. python-versions = ">=3.6,<4"
  633. [package.dependencies]
  634. pyasn1 = ">=0.1.3"
  635. [[package]]
  636. name = "six"
  637. version = "1.16.0"
  638. description = "Python 2 and 3 compatibility utilities"
  639. category = "main"
  640. optional = false
  641. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
  642. [[package]]
  643. name = "snowballstemmer"
  644. version = "2.2.0"
  645. description = "This package provides 29 stemmers for 28 languages generated from Snowball algorithms."
  646. category = "main"
  647. optional = false
  648. python-versions = "*"
  649. [[package]]
  650. name = "sphinx"
  651. version = "5.1.1"
  652. description = "Python documentation generator"
  653. category = "main"
  654. optional = true
  655. python-versions = ">=3.6"
  656. [package.dependencies]
  657. alabaster = ">=0.7,<0.8"
  658. babel = ">=1.3"
  659. colorama = {version = ">=0.3.5", markers = "sys_platform == \"win32\""}
  660. docutils = ">=0.14,<0.20"
  661. imagesize = "*"
  662. importlib-metadata = {version = ">=4.4", markers = "python_version < \"3.10\""}
  663. Jinja2 = ">=2.3"
  664. packaging = "*"
  665. Pygments = ">=2.0"
  666. requests = ">=2.5.0"
  667. snowballstemmer = ">=1.1"
  668. sphinxcontrib-applehelp = "*"
  669. sphinxcontrib-devhelp = "*"
  670. sphinxcontrib-htmlhelp = ">=2.0.0"
  671. sphinxcontrib-jsmath = "*"
  672. sphinxcontrib-qthelp = "*"
  673. sphinxcontrib-serializinghtml = ">=1.1.5"
  674. [package.extras]
  675. docs = ["sphinxcontrib-websupport"]
  676. lint = ["flake8 (>=3.5.0)", "flake8-comprehensions", "flake8-bugbear", "isort", "mypy (>=0.971)", "sphinx-lint", "docutils-stubs", "types-typed-ast", "types-requests"]
  677. test = ["pytest (>=4.6)", "html5lib", "cython", "typed-ast"]
  678. [[package]]
  679. name = "sphinx-autoapi"
  680. version = "1.9.0"
  681. description = "Sphinx API documentation generator"
  682. category = "main"
  683. optional = true
  684. python-versions = ">=3.7"
  685. [package.dependencies]
  686. astroid = ">=2.7"
  687. Jinja2 = "*"
  688. PyYAML = "*"
  689. sphinx = ">=3.0"
  690. unidecode = "*"
  691. [package.extras]
  692. docs = ["sphinx", "sphinx-rtd-theme"]
  693. dotnet = ["sphinxcontrib-dotnetdomain"]
  694. go = ["sphinxcontrib-golangdomain"]
  695. [[package]]
  696. name = "sphinx-rtd-theme"
  697. version = "1.0.0"
  698. description = "Read the Docs theme for Sphinx"
  699. category = "main"
  700. optional = true
  701. python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*"
  702. [package.dependencies]
  703. docutils = "<0.18"
  704. sphinx = ">=1.6"
  705. [package.extras]
  706. dev = ["transifex-client", "sphinxcontrib-httpdomain", "bump2version"]
  707. [[package]]
  708. name = "sphinxcontrib-applehelp"
  709. version = "1.0.2"
  710. description = "sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books"
  711. category = "main"
  712. optional = true
  713. python-versions = ">=3.5"
  714. [package.extras]
  715. lint = ["flake8", "mypy", "docutils-stubs"]
  716. test = ["pytest"]
  717. [[package]]
  718. name = "sphinxcontrib-devhelp"
  719. version = "1.0.2"
  720. description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document."
  721. category = "main"
  722. optional = true
  723. python-versions = ">=3.5"
  724. [package.extras]
  725. lint = ["flake8", "mypy", "docutils-stubs"]
  726. test = ["pytest"]
  727. [[package]]
  728. name = "sphinxcontrib-htmlhelp"
  729. version = "2.0.0"
  730. description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files"
  731. category = "main"
  732. optional = true
  733. python-versions = ">=3.6"
  734. [package.extras]
  735. lint = ["flake8", "mypy", "docutils-stubs"]
  736. test = ["pytest", "html5lib"]
  737. [[package]]
  738. name = "sphinxcontrib-jsmath"
  739. version = "1.0.1"
  740. description = "A sphinx extension which renders display math in HTML via JavaScript"
  741. category = "main"
  742. optional = true
  743. python-versions = ">=3.5"
  744. [package.extras]
  745. test = ["pytest", "flake8", "mypy"]
  746. [[package]]
  747. name = "sphinxcontrib-qthelp"
  748. version = "1.0.3"
  749. description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document."
  750. category = "main"
  751. optional = true
  752. python-versions = ">=3.5"
  753. [package.extras]
  754. lint = ["flake8", "mypy", "docutils-stubs"]
  755. test = ["pytest"]
  756. [[package]]
  757. name = "sphinxcontrib-serializinghtml"
  758. version = "1.1.5"
  759. description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)."
  760. category = "main"
  761. optional = true
  762. python-versions = ">=3.5"
  763. [package.extras]
  764. lint = ["flake8", "mypy", "docutils-stubs"]
  765. test = ["pytest"]
  766. [[package]]
  767. name = "termcolor"
  768. version = "1.1.0"
  769. description = "ANSII Color formatting for output in terminal."
  770. category = "dev"
  771. optional = false
  772. python-versions = "*"
  773. [[package]]
  774. name = "toml"
  775. version = "0.10.2"
  776. description = "Python Library for Tom's Obvious, Minimal Language"
  777. category = "dev"
  778. optional = false
  779. python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
  780. [[package]]
  781. name = "tomli"
  782. version = "2.0.1"
  783. description = "A lil' TOML parser"
  784. category = "dev"
  785. optional = false
  786. python-versions = ">=3.7"
  787. [[package]]
  788. name = "tomlkit"
  789. version = "0.11.1"
  790. description = "Style preserving TOML library"
  791. category = "dev"
  792. optional = false
  793. python-versions = ">=3.6,<4.0"
  794. [[package]]
  795. name = "tox"
  796. version = "3.25.1"
  797. description = "tox is a generic virtualenv management and test command line tool"
  798. category = "dev"
  799. optional = false
  800. python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
  801. [package.dependencies]
  802. colorama = {version = ">=0.4.1", markers = "platform_system == \"Windows\""}
  803. filelock = ">=3.0.0"
  804. importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""}
  805. packaging = ">=14"
  806. pluggy = ">=0.12.0"
  807. py = ">=1.4.17"
  808. six = ">=1.14.0"
  809. toml = ">=0.9.4"
  810. virtualenv = ">=16.0.0,<20.0.0 || >20.0.0,<20.0.1 || >20.0.1,<20.0.2 || >20.0.2,<20.0.3 || >20.0.3,<20.0.4 || >20.0.4,<20.0.5 || >20.0.5,<20.0.6 || >20.0.6,<20.0.7 || >20.0.7"
  811. [package.extras]
  812. docs = ["pygments-github-lexers (>=0.0.5)", "sphinx (>=2.0.0)", "sphinxcontrib-autoprogram (>=0.1.5)", "towncrier (>=18.5.0)"]
  813. testing = ["flaky (>=3.4.0)", "freezegun (>=0.3.11)", "pytest (>=4.0.0)", "pytest-cov (>=2.5.1)", "pytest-mock (>=1.10.0)", "pytest-randomly (>=1.0.0)", "psutil (>=5.6.1)", "pathlib2 (>=2.3.3)"]
  814. [[package]]
  815. name = "typed-ast"
  816. version = "1.5.4"
  817. description = "a fork of Python 2 and 3 ast modules with type comment support"
  818. category = "main"
  819. optional = false
  820. python-versions = ">=3.6"
  821. [[package]]
  822. name = "typing-extensions"
  823. version = "4.3.0"
  824. description = "Backported and Experimental Type Hints for Python 3.7+"
  825. category = "main"
  826. optional = false
  827. python-versions = ">=3.7"
  828. [[package]]
  829. name = "unidecode"
  830. version = "1.3.4"
  831. description = "ASCII transliterations of Unicode text"
  832. category = "main"
  833. optional = true
  834. python-versions = ">=3.5"
  835. [[package]]
  836. name = "urllib3"
  837. version = "1.26.11"
  838. description = "HTTP library with thread-safe connection pooling, file post, and more."
  839. category = "main"
  840. optional = false
  841. python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4"
  842. [package.extras]
  843. brotli = ["brotlicffi (>=0.8.0)", "brotli (>=1.0.9)", "brotlipy (>=0.6.0)"]
  844. secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"]
  845. socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
  846. [[package]]
  847. name = "virtualenv"
  848. version = "20.16.2"
  849. description = "Virtual Python Environment builder"
  850. category = "dev"
  851. optional = false
  852. python-versions = ">=3.6"
  853. [package.dependencies]
  854. distlib = ">=0.3.1,<1"
  855. filelock = ">=3.2,<4"
  856. importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""}
  857. platformdirs = ">=2,<3"
  858. [package.extras]
  859. docs = ["proselint (>=0.10.2)", "sphinx (>=3)", "sphinx-argparse (>=0.2.5)", "sphinx-rtd-theme (>=0.4.3)", "towncrier (>=21.3)"]
  860. testing = ["coverage (>=4)", "coverage-enable-subprocess (>=1)", "flaky (>=3)", "packaging (>=20.0)", "pytest (>=4)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.1)", "pytest-mock (>=2)", "pytest-randomly (>=1)", "pytest-timeout (>=1)"]
  861. [[package]]
  862. name = "wcwidth"
  863. version = "0.2.5"
  864. description = "Measures the displayed width of unicode strings in a terminal"
  865. category = "dev"
  866. optional = false
  867. python-versions = "*"
  868. [[package]]
  869. name = "wrapt"
  870. version = "1.14.1"
  871. description = "Module for decorators, wrappers and monkey patching."
  872. category = "main"
  873. optional = true
  874. python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
  875. [[package]]
  876. name = "zipp"
  877. version = "3.8.1"
  878. description = "Backport of pathlib-compatible object wrapper for zip files"
  879. category = "main"
  880. optional = false
  881. python-versions = ">=3.7"
  882. [package.extras]
  883. docs = ["sphinx", "jaraco.packaging (>=9)", "rst.linker (>=1.9)", "jaraco.tidelift (>=1.4)"]
  884. 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)"]
  885. [extras]
  886. docs = ["mock", "alabaster", "commonmark", "recommonmark", "Sphinx", "sphinx-rtd-theme", "readthedocs-sphinx-ext", "m2r2", "sphinx-autoapi"]
  887. [metadata]
  888. lock-version = "1.1"
  889. python-versions = "^3.7"
  890. content-hash = "b6851001fb6b3e331a39e6bab1fa2ed99fdc555e9683137c20c9c593c0e1c040"
  891. [metadata.files]
  892. alabaster = [
  893. {file = "alabaster-0.7.12-py2.py3-none-any.whl", hash = "sha256:446438bdcca0e05bd45ea2de1668c1d9b032e1a9154c2c259092d77031ddd359"},
  894. {file = "alabaster-0.7.12.tar.gz", hash = "sha256:a661d72d58e6ea8a57f7a86e37d86716863ee5e92788398526d58b26a4e4dc02"},
  895. ]
  896. argcomplete = [
  897. {file = "argcomplete-1.12.3-py2.py3-none-any.whl", hash = "sha256:291f0beca7fd49ce285d2f10e4c1c77e9460cf823eef2de54df0c0fec88b0d81"},
  898. {file = "argcomplete-1.12.3.tar.gz", hash = "sha256:2c7dbffd8c045ea534921e63b0be6fe65e88599990d8dc408ac8c542b72a5445"},
  899. ]
  900. astroid = []
  901. atomicwrites = []
  902. attrs = []
  903. babel = [
  904. {file = "Babel-2.10.3-py3-none-any.whl", hash = "sha256:ff56f4892c1c4bf0d814575ea23471c230d544203c7748e8c68f0089478d48eb"},
  905. {file = "Babel-2.10.3.tar.gz", hash = "sha256:7614553711ee97490f732126dc077f8d0ae084ebc6a96e23db1482afabdb2c51"},
  906. ]
  907. black = []
  908. certifi = [
  909. {file = "certifi-2022.6.15-py3-none-any.whl", hash = "sha256:fe86415d55e84719d75f8b69414f6438ac3547d2078ab91b67e779ef69378412"},
  910. {file = "certifi-2022.6.15.tar.gz", hash = "sha256:84c85a9078b11105f04f3036a9482ae10e4621616db313fe045dd24743a0820d"},
  911. ]
  912. cffi = []
  913. cfgv = [
  914. {file = "cfgv-3.3.1-py2.py3-none-any.whl", hash = "sha256:c6a0883f3917a037485059700b9e75da2464e6c27051014ad85ba6aaa5884426"},
  915. {file = "cfgv-3.3.1.tar.gz", hash = "sha256:f5a830efb9ce7a445376bb66ec94c638a9787422f96264c98edc6bdeed8ab736"},
  916. ]
  917. chardet = []
  918. charset-normalizer = []
  919. click = [
  920. {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"},
  921. {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"},
  922. ]
  923. colorama = [
  924. {file = "colorama-0.4.5-py2.py3-none-any.whl", hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"},
  925. {file = "colorama-0.4.5.tar.gz", hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"},
  926. ]
  927. commitizen = []
  928. commonmark = [
  929. {file = "commonmark-0.9.1-py2.py3-none-any.whl", hash = "sha256:da2f38c92590f83de410ba1a3cbceafbc74fee9def35f9251ba9a971d6d66fd9"},
  930. {file = "commonmark-0.9.1.tar.gz", hash = "sha256:452f9dc859be7f06631ddcb328b6919c67984aca654e5fefb3914d54691aed60"},
  931. ]
  932. coverage = []
  933. cryptography = []
  934. decli = [
  935. {file = "decli-0.5.2-py3-none-any.whl", hash = "sha256:d3207bc02d0169bf6ed74ccca09ce62edca0eb25b0ebf8bf4ae3fb8333e15ca0"},
  936. {file = "decli-0.5.2.tar.gz", hash = "sha256:f2cde55034a75c819c630c7655a844c612f2598c42c21299160465df6ad463ad"},
  937. ]
  938. distlib = []
  939. docutils = [
  940. {file = "docutils-0.17.1-py2.py3-none-any.whl", hash = "sha256:cf316c8370a737a022b72b56874f6602acf974a37a9fba42ec2876387549fc61"},
  941. {file = "docutils-0.17.1.tar.gz", hash = "sha256:686577d2e4c32380bb50cbb22f575ed742d58168cee37e99117a854bcd88f125"},
  942. ]
  943. ecdsa = []
  944. filelock = [
  945. {file = "filelock-3.7.1-py3-none-any.whl", hash = "sha256:37def7b658813cda163b56fc564cdc75e86d338246458c4c28ae84cabefa2404"},
  946. {file = "filelock-3.7.1.tar.gz", hash = "sha256:3a0fd85166ad9dbab54c9aec96737b744106dc5f15c0b09a6744a445299fcf04"},
  947. ]
  948. flake8 = [
  949. {file = "flake8-3.9.2-py2.py3-none-any.whl", hash = "sha256:bf8fd333346d844f616e8d47905ef3a3384edae6b4e9beb0c5101e25e3110907"},
  950. {file = "flake8-3.9.2.tar.gz", hash = "sha256:07528381786f2a6237b061f6e96610a4167b226cb926e2aa2b6b1d78057c576b"},
  951. ]
  952. flake8-docstrings = []
  953. identify = []
  954. idna = [
  955. {file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"},
  956. {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"},
  957. ]
  958. imagesize = []
  959. importlib-metadata = [
  960. {file = "importlib_metadata-4.12.0-py3-none-any.whl", hash = "sha256:7401a975809ea1fdc658c3aa4f78cc2195a0e019c5cbc4c06122884e9ae80c23"},
  961. {file = "importlib_metadata-4.12.0.tar.gz", hash = "sha256:637245b8bab2b6502fcbc752cc4b7a6f6243bb02b31c5c26156ad103d3d45670"},
  962. ]
  963. iniconfig = [
  964. {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"},
  965. {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"},
  966. ]
  967. isort = [
  968. {file = "isort-5.10.1-py3-none-any.whl", hash = "sha256:6f62d78e2f89b4500b080fe3a81690850cd254227f27f75c3a0c491a1f351ba7"},
  969. {file = "isort-5.10.1.tar.gz", hash = "sha256:e8443a5e7a020e9d7f97f1d7d9cd17c88bcb3bc7e218bf9cf5095fe550be2951"},
  970. ]
  971. jinja2 = [
  972. {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"},
  973. {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"},
  974. ]
  975. lazy-object-proxy = [
  976. {file = "lazy-object-proxy-1.7.1.tar.gz", hash = "sha256:d609c75b986def706743cdebe5e47553f4a5a1da9c5ff66d76013ef396b5a8a4"},
  977. {file = "lazy_object_proxy-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bb8c5fd1684d60a9902c60ebe276da1f2281a318ca16c1d0a96db28f62e9166b"},
  978. {file = "lazy_object_proxy-1.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a57d51ed2997e97f3b8e3500c984db50a554bb5db56c50b5dab1b41339b37e36"},
  979. {file = "lazy_object_proxy-1.7.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd45683c3caddf83abbb1249b653a266e7069a09f486daa8863fb0e7496a9fdb"},
  980. {file = "lazy_object_proxy-1.7.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:8561da8b3dd22d696244d6d0d5330618c993a215070f473b699e00cf1f3f6443"},
  981. {file = "lazy_object_proxy-1.7.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fccdf7c2c5821a8cbd0a9440a456f5050492f2270bd54e94360cac663398739b"},
  982. {file = "lazy_object_proxy-1.7.1-cp310-cp310-win32.whl", hash = "sha256:898322f8d078f2654d275124a8dd19b079080ae977033b713f677afcfc88e2b9"},
  983. {file = "lazy_object_proxy-1.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:85b232e791f2229a4f55840ed54706110c80c0a210d076eee093f2b2e33e1bfd"},
  984. {file = "lazy_object_proxy-1.7.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:46ff647e76f106bb444b4533bb4153c7370cdf52efc62ccfc1a28bdb3cc95442"},
  985. {file = "lazy_object_proxy-1.7.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:12f3bb77efe1367b2515f8cb4790a11cffae889148ad33adad07b9b55e0ab22c"},
  986. {file = "lazy_object_proxy-1.7.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c19814163728941bb871240d45c4c30d33b8a2e85972c44d4e63dd7107faba44"},
  987. {file = "lazy_object_proxy-1.7.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:e40f2013d96d30217a51eeb1db28c9ac41e9d0ee915ef9d00da639c5b63f01a1"},
  988. {file = "lazy_object_proxy-1.7.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:2052837718516a94940867e16b1bb10edb069ab475c3ad84fd1e1a6dd2c0fcfc"},
  989. {file = "lazy_object_proxy-1.7.1-cp36-cp36m-win32.whl", hash = "sha256:6a24357267aa976abab660b1d47a34aaf07259a0c3859a34e536f1ee6e76b5bb"},
  990. {file = "lazy_object_proxy-1.7.1-cp36-cp36m-win_amd64.whl", hash = "sha256:6aff3fe5de0831867092e017cf67e2750c6a1c7d88d84d2481bd84a2e019ec35"},
  991. {file = "lazy_object_proxy-1.7.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6a6e94c7b02641d1311228a102607ecd576f70734dc3d5e22610111aeacba8a0"},
  992. {file = "lazy_object_proxy-1.7.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4ce15276a1a14549d7e81c243b887293904ad2d94ad767f42df91e75fd7b5b6"},
  993. {file = "lazy_object_proxy-1.7.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e368b7f7eac182a59ff1f81d5f3802161932a41dc1b1cc45c1f757dc876b5d2c"},
  994. {file = "lazy_object_proxy-1.7.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:6ecbb350991d6434e1388bee761ece3260e5228952b1f0c46ffc800eb313ff42"},
  995. {file = "lazy_object_proxy-1.7.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:553b0f0d8dbf21890dd66edd771f9b1b5f51bd912fa5f26de4449bfc5af5e029"},
  996. {file = "lazy_object_proxy-1.7.1-cp37-cp37m-win32.whl", hash = "sha256:c7a683c37a8a24f6428c28c561c80d5f4fd316ddcf0c7cab999b15ab3f5c5c69"},
  997. {file = "lazy_object_proxy-1.7.1-cp37-cp37m-win_amd64.whl", hash = "sha256:df2631f9d67259dc9620d831384ed7732a198eb434eadf69aea95ad18c587a28"},
  998. {file = "lazy_object_proxy-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:07fa44286cda977bd4803b656ffc1c9b7e3bc7dff7d34263446aec8f8c96f88a"},
  999. {file = "lazy_object_proxy-1.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4dca6244e4121c74cc20542c2ca39e5c4a5027c81d112bfb893cf0790f96f57e"},
  1000. {file = "lazy_object_proxy-1.7.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:91ba172fc5b03978764d1df5144b4ba4ab13290d7bab7a50f12d8117f8630c38"},
  1001. {file = "lazy_object_proxy-1.7.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:043651b6cb706eee4f91854da4a089816a6606c1428fd391573ef8cb642ae4f7"},
  1002. {file = "lazy_object_proxy-1.7.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b9e89b87c707dd769c4ea91f7a31538888aad05c116a59820f28d59b3ebfe25a"},
  1003. {file = "lazy_object_proxy-1.7.1-cp38-cp38-win32.whl", hash = "sha256:9d166602b525bf54ac994cf833c385bfcc341b364e3ee71e3bf5a1336e677b55"},
  1004. {file = "lazy_object_proxy-1.7.1-cp38-cp38-win_amd64.whl", hash = "sha256:8f3953eb575b45480db6568306893f0bd9d8dfeeebd46812aa09ca9579595148"},
  1005. {file = "lazy_object_proxy-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dd7ed7429dbb6c494aa9bc4e09d94b778a3579be699f9d67da7e6804c422d3de"},
  1006. {file = "lazy_object_proxy-1.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70ed0c2b380eb6248abdef3cd425fc52f0abd92d2b07ce26359fcbc399f636ad"},
  1007. {file = "lazy_object_proxy-1.7.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7096a5e0c1115ec82641afbdd70451a144558ea5cf564a896294e346eb611be1"},
  1008. {file = "lazy_object_proxy-1.7.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f769457a639403073968d118bc70110e7dce294688009f5c24ab78800ae56dc8"},
  1009. {file = "lazy_object_proxy-1.7.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:39b0e26725c5023757fc1ab2a89ef9d7ab23b84f9251e28f9cc114d5b59c1b09"},
  1010. {file = "lazy_object_proxy-1.7.1-cp39-cp39-win32.whl", hash = "sha256:2130db8ed69a48a3440103d4a520b89d8a9405f1b06e2cc81640509e8bf6548f"},
  1011. {file = "lazy_object_proxy-1.7.1-cp39-cp39-win_amd64.whl", hash = "sha256:677ea950bef409b47e51e733283544ac3d660b709cfce7b187f5ace137960d61"},
  1012. {file = "lazy_object_proxy-1.7.1-pp37.pp38-none-any.whl", hash = "sha256:d66906d5785da8e0be7360912e99c9188b70f52c422f9fc18223347235691a84"},
  1013. ]
  1014. m2r2 = [
  1015. {file = "m2r2-0.3.2-py3-none-any.whl", hash = "sha256:d3684086b61b4bebe2307f15189495360f05a123c9bda2a66462649b7ca236aa"},
  1016. {file = "m2r2-0.3.2.tar.gz", hash = "sha256:ccd95b052dcd1ac7442ecb3111262b2001c10e4119b459c34c93ac7a5c2c7868"},
  1017. ]
  1018. markupsafe = [
  1019. {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812"},
  1020. {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a"},
  1021. {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a49907dd8420c5685cfa064a1335b6754b74541bbb3706c259c02ed65b644b3e"},
  1022. {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10c1bfff05d95783da83491be968e8fe789263689c02724e0c691933c52994f5"},
  1023. {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7bd98b796e2b6553da7225aeb61f447f80a1ca64f41d83612e6139ca5213aa4"},
  1024. {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b09bf97215625a311f669476f44b8b318b075847b49316d3e28c08e41a7a573f"},
  1025. {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:694deca8d702d5db21ec83983ce0bb4b26a578e71fbdbd4fdcd387daa90e4d5e"},
  1026. {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:efc1913fd2ca4f334418481c7e595c00aad186563bbc1ec76067848c7ca0a933"},
  1027. {file = "MarkupSafe-2.1.1-cp310-cp310-win32.whl", hash = "sha256:4a33dea2b688b3190ee12bd7cfa29d39c9ed176bda40bfa11099a3ce5d3a7ac6"},
  1028. {file = "MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:dda30ba7e87fbbb7eab1ec9f58678558fd9a6b8b853530e176eabd064da81417"},
  1029. {file = "MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:671cd1187ed5e62818414afe79ed29da836dde67166a9fac6d435873c44fdd02"},
  1030. {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3799351e2336dc91ea70b034983ee71cf2f9533cdff7c14c90ea126bfd95d65a"},
  1031. {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591e9ecd94d7feb70c1cbd7be7b3ebea3f548870aa91e2732960fa4d57a37"},
  1032. {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6fbf47b5d3728c6aea2abb0589b5d30459e369baa772e0f37a0320185e87c980"},
  1033. {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d5ee4f386140395a2c818d149221149c54849dfcfcb9f1debfe07a8b8bd63f9a"},
  1034. {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:bcb3ed405ed3222f9904899563d6fc492ff75cce56cba05e32eff40e6acbeaa3"},
  1035. {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e1c0b87e09fa55a220f058d1d49d3fb8df88fbfab58558f1198e08c1e1de842a"},
  1036. {file = "MarkupSafe-2.1.1-cp37-cp37m-win32.whl", hash = "sha256:8dc1c72a69aa7e082593c4a203dcf94ddb74bb5c8a731e4e1eb68d031e8498ff"},
  1037. {file = "MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:97a68e6ada378df82bc9f16b800ab77cbf4b2fada0081794318520138c088e4a"},
  1038. {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e8c843bbcda3a2f1e3c2ab25913c80a3c5376cd00c6e8c4a86a89a28c8dc5452"},
  1039. {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0212a68688482dc52b2d45013df70d169f542b7394fc744c02a57374a4207003"},
  1040. {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e576a51ad59e4bfaac456023a78f6b5e6e7651dcd383bcc3e18d06f9b55d6d1"},
  1041. {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b9fe39a2ccc108a4accc2676e77da025ce383c108593d65cc909add5c3bd601"},
  1042. {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96e37a3dc86e80bf81758c152fe66dbf60ed5eca3d26305edf01892257049925"},
  1043. {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6d0072fea50feec76a4c418096652f2c3238eaa014b2f94aeb1d56a66b41403f"},
  1044. {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:089cf3dbf0cd6c100f02945abeb18484bd1ee57a079aefd52cffd17fba910b88"},
  1045. {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a074d34ee7a5ce3effbc526b7083ec9731bb3cbf921bbe1d3005d4d2bdb3a63"},
  1046. {file = "MarkupSafe-2.1.1-cp38-cp38-win32.whl", hash = "sha256:421be9fbf0ffe9ffd7a378aafebbf6f4602d564d34be190fc19a193232fd12b1"},
  1047. {file = "MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7"},
  1048. {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e04e26803c9c3851c931eac40c695602c6295b8d432cbe78609649ad9bd2da8a"},
  1049. {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b87db4360013327109564f0e591bd2a3b318547bcef31b468a92ee504d07ae4f"},
  1050. {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99a2a507ed3ac881b975a2976d59f38c19386d128e7a9a18b7df6fff1fd4c1d6"},
  1051. {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56442863ed2b06d19c37f94d999035e15ee982988920e12a5b4ba29b62ad1f77"},
  1052. {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ce11ee3f23f79dbd06fb3d63e2f6af7b12db1d46932fe7bd8afa259a5996603"},
  1053. {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:33b74d289bd2f5e527beadcaa3f401e0df0a89927c1559c8566c066fa4248ab7"},
  1054. {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:43093fb83d8343aac0b1baa75516da6092f58f41200907ef92448ecab8825135"},
  1055. {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8e3dcf21f367459434c18e71b2a9532d96547aef8a871872a5bd69a715c15f96"},
  1056. {file = "MarkupSafe-2.1.1-cp39-cp39-win32.whl", hash = "sha256:d4306c36ca495956b6d568d276ac11fdd9c30a36f1b6eb928070dc5360b22e1c"},
  1057. {file = "MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247"},
  1058. {file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"},
  1059. ]
  1060. mccabe = [
  1061. {file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"},
  1062. {file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"},
  1063. ]
  1064. mistune = [
  1065. {file = "mistune-0.8.4-py2.py3-none-any.whl", hash = "sha256:88a1051873018da288eee8538d476dffe1262495144b33ecb586c4ab266bb8d4"},
  1066. {file = "mistune-0.8.4.tar.gz", hash = "sha256:59a3429db53c50b5c6bcc8a07f8848cb00d7dc8bdb431a4ab41920d201d4756e"},
  1067. ]
  1068. mock = [
  1069. {file = "mock-4.0.3-py3-none-any.whl", hash = "sha256:122fcb64ee37cfad5b3f48d7a7d51875d7031aaf3d8be7c42e2bee25044eee62"},
  1070. {file = "mock-4.0.3.tar.gz", hash = "sha256:7d3fbbde18228f4ff2f1f119a45cdffa458b4c0dee32eb4d2bb2f82554bac7bc"},
  1071. ]
  1072. mypy-extensions = [
  1073. {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"},
  1074. {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"},
  1075. ]
  1076. nodeenv = [
  1077. {file = "nodeenv-1.7.0-py2.py3-none-any.whl", hash = "sha256:27083a7b96a25f2f5e1d8cb4b6317ee8aeda3bdd121394e5ac54e498028a042e"},
  1078. {file = "nodeenv-1.7.0.tar.gz", hash = "sha256:e0e7f7dfb85fc5394c6fe1e8fa98131a2473e04311a45afb6508f7cf1836fa2b"},
  1079. ]
  1080. packaging = [
  1081. {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"},
  1082. {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"},
  1083. ]
  1084. pathspec = [
  1085. {file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"},
  1086. {file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"},
  1087. ]
  1088. platformdirs = [
  1089. {file = "platformdirs-2.5.2-py3-none-any.whl", hash = "sha256:027d8e83a2d7de06bbac4e5ef7e023c02b863d7ea5d079477e722bb41ab25788"},
  1090. {file = "platformdirs-2.5.2.tar.gz", hash = "sha256:58c8abb07dcb441e6ee4b11d8df0ac856038f944ab98b7be6b27b2a3c7feef19"},
  1091. ]
  1092. pluggy = [
  1093. {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"},
  1094. {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"},
  1095. ]
  1096. pre-commit = []
  1097. prompt-toolkit = []
  1098. py = [
  1099. {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"},
  1100. {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"},
  1101. ]
  1102. pyasn1 = [
  1103. {file = "pyasn1-0.4.8-py2.4.egg", hash = "sha256:fec3e9d8e36808a28efb59b489e4528c10ad0f480e57dcc32b4de5c9d8c9fdf3"},
  1104. {file = "pyasn1-0.4.8-py2.5.egg", hash = "sha256:0458773cfe65b153891ac249bcf1b5f8f320b7c2ce462151f8fa74de8934becf"},
  1105. {file = "pyasn1-0.4.8-py2.6.egg", hash = "sha256:5c9414dcfede6e441f7e8f81b43b34e834731003427e5b09e4e00e3172a10f00"},
  1106. {file = "pyasn1-0.4.8-py2.7.egg", hash = "sha256:6e7545f1a61025a4e58bb336952c5061697da694db1cae97b116e9c46abcf7c8"},
  1107. {file = "pyasn1-0.4.8-py2.py3-none-any.whl", hash = "sha256:39c7e2ec30515947ff4e87fb6f456dfc6e84857d34be479c9d4a4ba4bf46aa5d"},
  1108. {file = "pyasn1-0.4.8-py3.1.egg", hash = "sha256:78fa6da68ed2727915c4767bb386ab32cdba863caa7dbe473eaae45f9959da86"},
  1109. {file = "pyasn1-0.4.8-py3.2.egg", hash = "sha256:08c3c53b75eaa48d71cf8c710312316392ed40899cb34710d092e96745a358b7"},
  1110. {file = "pyasn1-0.4.8-py3.3.egg", hash = "sha256:03840c999ba71680a131cfaee6fab142e1ed9bbd9c693e285cc6aca0d555e576"},
  1111. {file = "pyasn1-0.4.8-py3.4.egg", hash = "sha256:7ab8a544af125fb704feadb008c99a88805126fb525280b2270bb25cc1d78a12"},
  1112. {file = "pyasn1-0.4.8-py3.5.egg", hash = "sha256:e89bf84b5437b532b0803ba5c9a5e054d21fec423a89952a74f87fa2c9b7bce2"},
  1113. {file = "pyasn1-0.4.8-py3.6.egg", hash = "sha256:014c0e9976956a08139dc0712ae195324a75e142284d5f87f1a87ee1b068a359"},
  1114. {file = "pyasn1-0.4.8-py3.7.egg", hash = "sha256:99fcc3c8d804d1bc6d9a099921e39d827026409a58f2a720dcdb89374ea0c776"},
  1115. {file = "pyasn1-0.4.8.tar.gz", hash = "sha256:aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba"},
  1116. ]
  1117. pycodestyle = [
  1118. {file = "pycodestyle-2.7.0-py2.py3-none-any.whl", hash = "sha256:514f76d918fcc0b55c6680472f0a37970994e07bbb80725808c17089be302068"},
  1119. {file = "pycodestyle-2.7.0.tar.gz", hash = "sha256:c389c1d06bf7904078ca03399a4816f974a1d590090fecea0c63ec26ebaf1cef"},
  1120. ]
  1121. pycparser = []
  1122. pydocstyle = []
  1123. pyflakes = [
  1124. {file = "pyflakes-2.3.1-py2.py3-none-any.whl", hash = "sha256:7893783d01b8a89811dd72d7dfd4d84ff098e5eed95cfa8905b22bbffe52efc3"},
  1125. {file = "pyflakes-2.3.1.tar.gz", hash = "sha256:f5bc8ecabc05bb9d291eb5203d6810b49040f6ff446a756326104746cc00c1db"},
  1126. ]
  1127. pygments = [
  1128. {file = "Pygments-2.12.0-py3-none-any.whl", hash = "sha256:dc9c10fb40944260f6ed4c688ece0cd2048414940f1cea51b8b226318411c519"},
  1129. {file = "Pygments-2.12.0.tar.gz", hash = "sha256:5eb116118f9612ff1ee89ac96437bb6b49e8f04d8a13b514ba26f620208e26eb"},
  1130. ]
  1131. pyparsing = [
  1132. {file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"},
  1133. {file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"},
  1134. ]
  1135. pytest = [
  1136. {file = "pytest-7.1.2-py3-none-any.whl", hash = "sha256:13d0e3ccfc2b6e26be000cb6568c832ba67ba32e719443bfe725814d3c42433c"},
  1137. {file = "pytest-7.1.2.tar.gz", hash = "sha256:a06a0425453864a270bc45e71f783330a7428defb4230fb5e6a731fde06ecd45"},
  1138. ]
  1139. pytest-cov = [
  1140. {file = "pytest-cov-3.0.0.tar.gz", hash = "sha256:e7f0f5b1617d2210a2cabc266dfe2f4c75a8d32fb89eafb7ad9d06f6d076d470"},
  1141. {file = "pytest_cov-3.0.0-py3-none-any.whl", hash = "sha256:578d5d15ac4a25e5f961c938b85a05b09fdaae9deef3bb6de9a6e766622ca7a6"},
  1142. ]
  1143. python-jose = [
  1144. {file = "python-jose-3.3.0.tar.gz", hash = "sha256:55779b5e6ad599c6336191246e95eb2293a9ddebd555f796a65f838f07e5d78a"},
  1145. {file = "python_jose-3.3.0-py2.py3-none-any.whl", hash = "sha256:9b1376b023f8b298536eedd47ae1089bcdb848f1535ab30555cd92002d78923a"},
  1146. ]
  1147. pytz = [
  1148. {file = "pytz-2022.1-py2.py3-none-any.whl", hash = "sha256:e68985985296d9a66a881eb3193b0906246245294a881e7c8afe623866ac6a5c"},
  1149. {file = "pytz-2022.1.tar.gz", hash = "sha256:1e760e2fe6a8163bc0b3d9a19c4f84342afa0a2affebfaa84b01b978a02ecaa7"},
  1150. ]
  1151. pyyaml = [
  1152. {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"},
  1153. {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"},
  1154. {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"},
  1155. {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"},
  1156. {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"},
  1157. {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"},
  1158. {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"},
  1159. {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"},
  1160. {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"},
  1161. {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"},
  1162. {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"},
  1163. {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"},
  1164. {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"},
  1165. {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"},
  1166. {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"},
  1167. {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"},
  1168. {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"},
  1169. {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"},
  1170. {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"},
  1171. {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"},
  1172. {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"},
  1173. {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"},
  1174. {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"},
  1175. {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"},
  1176. {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"},
  1177. {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"},
  1178. {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"},
  1179. {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"},
  1180. {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"},
  1181. {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"},
  1182. {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"},
  1183. {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"},
  1184. {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"},
  1185. ]
  1186. questionary = [
  1187. {file = "questionary-1.10.0-py3-none-any.whl", hash = "sha256:fecfcc8cca110fda9d561cb83f1e97ecbb93c613ff857f655818839dac74ce90"},
  1188. {file = "questionary-1.10.0.tar.gz", hash = "sha256:600d3aefecce26d48d97eee936fdb66e4bc27f934c3ab6dd1e292c4f43946d90"},
  1189. ]
  1190. readthedocs-sphinx-ext = [
  1191. {file = "readthedocs-sphinx-ext-2.1.8.tar.gz", hash = "sha256:a57e3713daf77bf91d1ba19e4b9888a47c0abfeb63ecf02e3ac77fcfd99bfe69"},
  1192. {file = "readthedocs_sphinx_ext-2.1.8-py2.py3-none-any.whl", hash = "sha256:5ab5875993191e5e526ca196a1082b73116b0cefd79073ab25367ba0458fffe9"},
  1193. ]
  1194. recommonmark = [
  1195. {file = "recommonmark-0.7.1-py2.py3-none-any.whl", hash = "sha256:1b1db69af0231efce3fa21b94ff627ea33dee7079a01dd0a7f8482c3da148b3f"},
  1196. {file = "recommonmark-0.7.1.tar.gz", hash = "sha256:bdb4db649f2222dcd8d2d844f0006b958d627f732415d399791ee436a3686d67"},
  1197. ]
  1198. requests = []
  1199. requests-toolbelt = []
  1200. rsa = []
  1201. six = [
  1202. {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
  1203. {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
  1204. ]
  1205. snowballstemmer = [
  1206. {file = "snowballstemmer-2.2.0-py2.py3-none-any.whl", hash = "sha256:c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a"},
  1207. {file = "snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1"},
  1208. ]
  1209. sphinx = []
  1210. sphinx-autoapi = []
  1211. sphinx-rtd-theme = [
  1212. {file = "sphinx_rtd_theme-1.0.0-py2.py3-none-any.whl", hash = "sha256:4d35a56f4508cfee4c4fb604373ede6feae2a306731d533f409ef5c3496fdbd8"},
  1213. {file = "sphinx_rtd_theme-1.0.0.tar.gz", hash = "sha256:eec6d497e4c2195fa0e8b2016b337532b8a699a68bcb22a512870e16925c6a5c"},
  1214. ]
  1215. sphinxcontrib-applehelp = [
  1216. {file = "sphinxcontrib-applehelp-1.0.2.tar.gz", hash = "sha256:a072735ec80e7675e3f432fcae8610ecf509c5f1869d17e2eecff44389cdbc58"},
  1217. {file = "sphinxcontrib_applehelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:806111e5e962be97c29ec4c1e7fe277bfd19e9652fb1a4392105b43e01af885a"},
  1218. ]
  1219. sphinxcontrib-devhelp = [
  1220. {file = "sphinxcontrib-devhelp-1.0.2.tar.gz", hash = "sha256:ff7f1afa7b9642e7060379360a67e9c41e8f3121f2ce9164266f61b9f4b338e4"},
  1221. {file = "sphinxcontrib_devhelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:8165223f9a335cc1af7ffe1ed31d2871f325254c0423bc0c4c7cd1c1e4734a2e"},
  1222. ]
  1223. sphinxcontrib-htmlhelp = [
  1224. {file = "sphinxcontrib-htmlhelp-2.0.0.tar.gz", hash = "sha256:f5f8bb2d0d629f398bf47d0d69c07bc13b65f75a81ad9e2f71a63d4b7a2f6db2"},
  1225. {file = "sphinxcontrib_htmlhelp-2.0.0-py2.py3-none-any.whl", hash = "sha256:d412243dfb797ae3ec2b59eca0e52dac12e75a241bf0e4eb861e450d06c6ed07"},
  1226. ]
  1227. sphinxcontrib-jsmath = [
  1228. {file = "sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8"},
  1229. {file = "sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178"},
  1230. ]
  1231. sphinxcontrib-qthelp = [
  1232. {file = "sphinxcontrib-qthelp-1.0.3.tar.gz", hash = "sha256:4c33767ee058b70dba89a6fc5c1892c0d57a54be67ddd3e7875a18d14cba5a72"},
  1233. {file = "sphinxcontrib_qthelp-1.0.3-py2.py3-none-any.whl", hash = "sha256:bd9fc24bcb748a8d51fd4ecaade681350aa63009a347a8c14e637895444dfab6"},
  1234. ]
  1235. sphinxcontrib-serializinghtml = [
  1236. {file = "sphinxcontrib-serializinghtml-1.1.5.tar.gz", hash = "sha256:aa5f6de5dfdf809ef505c4895e51ef5c9eac17d0f287933eb49ec495280b6952"},
  1237. {file = "sphinxcontrib_serializinghtml-1.1.5-py2.py3-none-any.whl", hash = "sha256:352a9a00ae864471d3a7ead8d7d79f5fc0b57e8b3f95e9867eb9eb28999b92fd"},
  1238. ]
  1239. termcolor = [
  1240. {file = "termcolor-1.1.0.tar.gz", hash = "sha256:1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b"},
  1241. ]
  1242. toml = [
  1243. {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"},
  1244. {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"},
  1245. ]
  1246. tomli = [
  1247. {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"},
  1248. {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
  1249. ]
  1250. tomlkit = []
  1251. tox = []
  1252. typed-ast = [
  1253. {file = "typed_ast-1.5.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:669dd0c4167f6f2cd9f57041e03c3c2ebf9063d0757dc89f79ba1daa2bfca9d4"},
  1254. {file = "typed_ast-1.5.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:211260621ab1cd7324e0798d6be953d00b74e0428382991adfddb352252f1d62"},
  1255. {file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:267e3f78697a6c00c689c03db4876dd1efdfea2f251a5ad6555e82a26847b4ac"},
  1256. {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"},
  1257. {file = "typed_ast-1.5.4-cp310-cp310-win_amd64.whl", hash = "sha256:a9916d2bb8865f973824fb47436fa45e1ebf2efd920f2b9f99342cb7fab93f72"},
  1258. {file = "typed_ast-1.5.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:79b1e0869db7c830ba6a981d58711c88b6677506e648496b1f64ac7d15633aec"},
  1259. {file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a94d55d142c9265f4ea46fab70977a1944ecae359ae867397757d836ea5a3f47"},
  1260. {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"},
  1261. {file = "typed_ast-1.5.4-cp36-cp36m-win_amd64.whl", hash = "sha256:639c5f0b21776605dd6c9dbe592d5228f021404dafd377e2b7ac046b0349b1a1"},
  1262. {file = "typed_ast-1.5.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cf4afcfac006ece570e32d6fa90ab74a17245b83dfd6655a6f68568098345ff6"},
  1263. {file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed855bbe3eb3715fca349c80174cfcfd699c2f9de574d40527b8429acae23a66"},
  1264. {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"},
  1265. {file = "typed_ast-1.5.4-cp37-cp37m-win_amd64.whl", hash = "sha256:0261195c2062caf107831e92a76764c81227dae162c4f75192c0d489faf751a2"},
  1266. {file = "typed_ast-1.5.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2efae9db7a8c05ad5547d522e7dbe62c83d838d3906a3716d1478b6c1d61388d"},
  1267. {file = "typed_ast-1.5.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7d5d014b7daa8b0bf2eaef684295acae12b036d79f54178b92a2b6a56f92278f"},
  1268. {file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:370788a63915e82fd6f212865a596a0fefcbb7d408bbbb13dea723d971ed8bdc"},
  1269. {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"},
  1270. {file = "typed_ast-1.5.4-cp38-cp38-win_amd64.whl", hash = "sha256:683407d92dc953c8a7347119596f0b0e6c55eb98ebebd9b23437501b28dcbb8e"},
  1271. {file = "typed_ast-1.5.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4879da6c9b73443f97e731b617184a596ac1235fe91f98d279a7af36c796da35"},
  1272. {file = "typed_ast-1.5.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3e123d878ba170397916557d31c8f589951e353cc95fb7f24f6bb69adc1a8a97"},
  1273. {file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebd9d7f80ccf7a82ac5f88c521115cc55d84e35bf8b446fcd7836eb6b98929a3"},
  1274. {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"},
  1275. {file = "typed_ast-1.5.4-cp39-cp39-win_amd64.whl", hash = "sha256:0fdbcf2fef0ca421a3f5912555804296f0b0960f0418c440f5d6d3abb549f3e1"},
  1276. {file = "typed_ast-1.5.4.tar.gz", hash = "sha256:39e21ceb7388e4bb37f4c679d72707ed46c2fbf2a5609b8b8ebc4b067d977df2"},
  1277. ]
  1278. typing-extensions = []
  1279. unidecode = [
  1280. {file = "Unidecode-1.3.4-py3-none-any.whl", hash = "sha256:afa04efcdd818a93237574791be9b2817d7077c25a068b00f8cff7baa4e59257"},
  1281. {file = "Unidecode-1.3.4.tar.gz", hash = "sha256:8e4352fb93d5a735c788110d2e7ac8e8031eb06ccbfe8d324ab71735015f9342"},
  1282. ]
  1283. urllib3 = []
  1284. virtualenv = []
  1285. wcwidth = [
  1286. {file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"},
  1287. {file = "wcwidth-0.2.5.tar.gz", hash = "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"},
  1288. ]
  1289. wrapt = [
  1290. {file = "wrapt-1.14.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:1b376b3f4896e7930f1f772ac4b064ac12598d1c38d04907e696cc4d794b43d3"},
  1291. {file = "wrapt-1.14.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:903500616422a40a98a5a3c4ff4ed9d0066f3b4c951fa286018ecdf0750194ef"},
  1292. {file = "wrapt-1.14.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:5a9a0d155deafd9448baff28c08e150d9b24ff010e899311ddd63c45c2445e28"},
  1293. {file = "wrapt-1.14.1-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:ddaea91abf8b0d13443f6dac52e89051a5063c7d014710dcb4d4abb2ff811a59"},
  1294. {file = "wrapt-1.14.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:36f582d0c6bc99d5f39cd3ac2a9062e57f3cf606ade29a0a0d6b323462f4dd87"},
  1295. {file = "wrapt-1.14.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:7ef58fb89674095bfc57c4069e95d7a31cfdc0939e2a579882ac7d55aadfd2a1"},
  1296. {file = "wrapt-1.14.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:e2f83e18fe2f4c9e7db597e988f72712c0c3676d337d8b101f6758107c42425b"},
  1297. {file = "wrapt-1.14.1-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:ee2b1b1769f6707a8a445162ea16dddf74285c3964f605877a20e38545c3c462"},
  1298. {file = "wrapt-1.14.1-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:833b58d5d0b7e5b9832869f039203389ac7cbf01765639c7309fd50ef619e0b1"},
  1299. {file = "wrapt-1.14.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:80bb5c256f1415f747011dc3604b59bc1f91c6e7150bd7db03b19170ee06b320"},
  1300. {file = "wrapt-1.14.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07f7a7d0f388028b2df1d916e94bbb40624c59b48ecc6cbc232546706fac74c2"},
  1301. {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02b41b633c6261feff8ddd8d11c711df6842aba629fdd3da10249a53211a72c4"},
  1302. {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2fe803deacd09a233e4762a1adcea5db5d31e6be577a43352936179d14d90069"},
  1303. {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:257fd78c513e0fb5cdbe058c27a0624c9884e735bbd131935fd49e9fe719d310"},
  1304. {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4fcc4649dc762cddacd193e6b55bc02edca674067f5f98166d7713b193932b7f"},
  1305. {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:11871514607b15cfeb87c547a49bca19fde402f32e2b1c24a632506c0a756656"},
  1306. {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8ad85f7f4e20964db4daadcab70b47ab05c7c1cf2a7c1e51087bfaa83831854c"},
  1307. {file = "wrapt-1.14.1-cp310-cp310-win32.whl", hash = "sha256:a9a52172be0b5aae932bef82a79ec0a0ce87288c7d132946d645eba03f0ad8a8"},
  1308. {file = "wrapt-1.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:6d323e1554b3d22cfc03cd3243b5bb815a51f5249fdcbb86fda4bf62bab9e164"},
  1309. {file = "wrapt-1.14.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:43ca3bbbe97af00f49efb06e352eae40434ca9d915906f77def219b88e85d907"},
  1310. {file = "wrapt-1.14.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:6b1a564e6cb69922c7fe3a678b9f9a3c54e72b469875aa8018f18b4d1dd1adf3"},
  1311. {file = "wrapt-1.14.1-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:00b6d4ea20a906c0ca56d84f93065b398ab74b927a7a3dbd470f6fc503f95dc3"},
  1312. {file = "wrapt-1.14.1-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:a85d2b46be66a71bedde836d9e41859879cc54a2a04fad1191eb50c2066f6e9d"},
  1313. {file = "wrapt-1.14.1-cp35-cp35m-win32.whl", hash = "sha256:dbcda74c67263139358f4d188ae5faae95c30929281bc6866d00573783c422b7"},
  1314. {file = "wrapt-1.14.1-cp35-cp35m-win_amd64.whl", hash = "sha256:b21bb4c09ffabfa0e85e3a6b623e19b80e7acd709b9f91452b8297ace2a8ab00"},
  1315. {file = "wrapt-1.14.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:9e0fd32e0148dd5dea6af5fee42beb949098564cc23211a88d799e434255a1f4"},
  1316. {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9736af4641846491aedb3c3f56b9bc5568d92b0692303b5a305301a95dfd38b1"},
  1317. {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b02d65b9ccf0ef6c34cba6cf5bf2aab1bb2f49c6090bafeecc9cd81ad4ea1c1"},
  1318. {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21ac0156c4b089b330b7666db40feee30a5d52634cc4560e1905d6529a3897ff"},
  1319. {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:9f3e6f9e05148ff90002b884fbc2a86bd303ae847e472f44ecc06c2cd2fcdb2d"},
  1320. {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:6e743de5e9c3d1b7185870f480587b75b1cb604832e380d64f9504a0535912d1"},
  1321. {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d79d7d5dc8a32b7093e81e97dad755127ff77bcc899e845f41bf71747af0c569"},
  1322. {file = "wrapt-1.14.1-cp36-cp36m-win32.whl", hash = "sha256:81b19725065dcb43df02b37e03278c011a09e49757287dca60c5aecdd5a0b8ed"},
  1323. {file = "wrapt-1.14.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b014c23646a467558be7da3d6b9fa409b2c567d2110599b7cf9a0c5992b3b471"},
  1324. {file = "wrapt-1.14.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:88bd7b6bd70a5b6803c1abf6bca012f7ed963e58c68d76ee20b9d751c74a3248"},
  1325. {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5901a312f4d14c59918c221323068fad0540e34324925c8475263841dbdfe68"},
  1326. {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d77c85fedff92cf788face9bfa3ebaa364448ebb1d765302e9af11bf449ca36d"},
  1327. {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d649d616e5c6a678b26d15ece345354f7c2286acd6db868e65fcc5ff7c24a77"},
  1328. {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7d2872609603cb35ca513d7404a94d6d608fc13211563571117046c9d2bcc3d7"},
  1329. {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:ee6acae74a2b91865910eef5e7de37dc6895ad96fa23603d1d27ea69df545015"},
  1330. {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:2b39d38039a1fdad98c87279b48bc5dce2c0ca0d73483b12cb72aa9609278e8a"},
  1331. {file = "wrapt-1.14.1-cp37-cp37m-win32.whl", hash = "sha256:60db23fa423575eeb65ea430cee741acb7c26a1365d103f7b0f6ec412b893853"},
  1332. {file = "wrapt-1.14.1-cp37-cp37m-win_amd64.whl", hash = "sha256:709fe01086a55cf79d20f741f39325018f4df051ef39fe921b1ebe780a66184c"},
  1333. {file = "wrapt-1.14.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8c0ce1e99116d5ab21355d8ebe53d9460366704ea38ae4d9f6933188f327b456"},
  1334. {file = "wrapt-1.14.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e3fb1677c720409d5f671e39bac6c9e0e422584e5f518bfd50aa4cbbea02433f"},
  1335. {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:642c2e7a804fcf18c222e1060df25fc210b9c58db7c91416fb055897fc27e8cc"},
  1336. {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b7c050ae976e286906dd3f26009e117eb000fb2cf3533398c5ad9ccc86867b1"},
  1337. {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef3f72c9666bba2bab70d2a8b79f2c6d2c1a42a7f7e2b0ec83bb2f9e383950af"},
  1338. {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:01c205616a89d09827986bc4e859bcabd64f5a0662a7fe95e0d359424e0e071b"},
  1339. {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5a0f54ce2c092aaf439813735584b9537cad479575a09892b8352fea5e988dc0"},
  1340. {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2cf71233a0ed05ccdabe209c606fe0bac7379fdcf687f39b944420d2a09fdb57"},
  1341. {file = "wrapt-1.14.1-cp38-cp38-win32.whl", hash = "sha256:aa31fdcc33fef9eb2552cbcbfee7773d5a6792c137b359e82879c101e98584c5"},
  1342. {file = "wrapt-1.14.1-cp38-cp38-win_amd64.whl", hash = "sha256:d1967f46ea8f2db647c786e78d8cc7e4313dbd1b0aca360592d8027b8508e24d"},
  1343. {file = "wrapt-1.14.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3232822c7d98d23895ccc443bbdf57c7412c5a65996c30442ebe6ed3df335383"},
  1344. {file = "wrapt-1.14.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:988635d122aaf2bdcef9e795435662bcd65b02f4f4c1ae37fbee7401c440b3a7"},
  1345. {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cca3c2cdadb362116235fdbd411735de4328c61425b0aa9f872fd76d02c4e86"},
  1346. {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d52a25136894c63de15a35bc0bdc5adb4b0e173b9c0d07a2be9d3ca64a332735"},
  1347. {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40e7bc81c9e2b2734ea4bc1aceb8a8f0ceaac7c5299bc5d69e37c44d9081d43b"},
  1348. {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b9b7a708dd92306328117d8c4b62e2194d00c365f18eff11a9b53c6f923b01e3"},
  1349. {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6a9a25751acb379b466ff6be78a315e2b439d4c94c1e99cb7266d40a537995d3"},
  1350. {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:34aa51c45f28ba7f12accd624225e2b1e5a3a45206aa191f6f9aac931d9d56fe"},
  1351. {file = "wrapt-1.14.1-cp39-cp39-win32.whl", hash = "sha256:dee0ce50c6a2dd9056c20db781e9c1cfd33e77d2d569f5d1d9321c641bb903d5"},
  1352. {file = "wrapt-1.14.1-cp39-cp39-win_amd64.whl", hash = "sha256:dee60e1de1898bde3b238f18340eec6148986da0455d8ba7848d50470a7a32fb"},
  1353. {file = "wrapt-1.14.1.tar.gz", hash = "sha256:380a85cf89e0e69b7cfbe2ea9f765f004ff419f34194018a6827ac0e3edfed4d"},
  1354. ]
  1355. zipp = []