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.

295 lines
13 KiB

2 years ago
  1. [[package]]
  2. name = "autopep8"
  3. version = "2.0.1"
  4. description = "A tool that automatically formats Python code to conform to the PEP 8 style guide"
  5. category = "dev"
  6. optional = false
  7. python-versions = ">=3.6"
  8. [package.dependencies]
  9. pycodestyle = ">=2.10.0"
  10. tomli = {version = "*", markers = "python_version < \"3.11\""}
  11. [[package]]
  12. name = "click"
  13. version = "8.1.3"
  14. description = "Composable command line interface toolkit"
  15. category = "main"
  16. optional = false
  17. python-versions = ">=3.7"
  18. [package.dependencies]
  19. colorama = {version = "*", markers = "platform_system == \"Windows\""}
  20. [[package]]
  21. name = "colorama"
  22. version = "0.4.6"
  23. description = "Cross-platform colored terminal text."
  24. category = "main"
  25. optional = false
  26. python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
  27. [[package]]
  28. name = "flask"
  29. version = "2.2.2"
  30. description = "A simple framework for building complex web applications."
  31. category = "main"
  32. optional = false
  33. python-versions = ">=3.7"
  34. [package.dependencies]
  35. click = ">=8.0"
  36. importlib-metadata = {version = ">=3.6.0", markers = "python_version < \"3.10\""}
  37. itsdangerous = ">=2.0"
  38. Jinja2 = ">=3.0"
  39. Werkzeug = ">=2.2.2"
  40. [package.extras]
  41. async = ["asgiref (>=3.2)"]
  42. dotenv = ["python-dotenv"]
  43. [[package]]
  44. name = "flask-sqlalchemy"
  45. version = "3.0.2"
  46. description = "Add SQLAlchemy support to your Flask application."
  47. category = "main"
  48. optional = false
  49. python-versions = ">=3.7"
  50. [package.dependencies]
  51. Flask = ">=2.2"
  52. SQLAlchemy = ">=1.4.18"
  53. [[package]]
  54. name = "greenlet"
  55. version = "2.0.1"
  56. description = "Lightweight in-process concurrent programming"
  57. category = "main"
  58. optional = false
  59. python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*"
  60. [package.extras]
  61. docs = ["sphinx", "docutils (<0.18)"]
  62. test = ["objgraph", "psutil", "faulthandler"]
  63. [[package]]
  64. name = "importlib-metadata"
  65. version = "5.2.0"
  66. description = "Read metadata from Python packages"
  67. category = "main"
  68. optional = false
  69. python-versions = ">=3.7"
  70. [package.dependencies]
  71. zipp = ">=0.5"
  72. [package.extras]
  73. docs = ["sphinx (>=3.5)", "jaraco.packaging (>=9)", "rst.linker (>=1.9)", "furo", "sphinx-lint", "jaraco.tidelift (>=1.4)"]
  74. perf = ["ipython"]
  75. testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "flake8 (<5)", "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)", "pytest-flake8", "importlib-resources (>=1.3)"]
  76. [[package]]
  77. name = "itsdangerous"
  78. version = "2.1.2"
  79. description = "Safely pass data to untrusted environments and back."
  80. category = "main"
  81. optional = false
  82. python-versions = ">=3.7"
  83. [[package]]
  84. name = "jinja2"
  85. version = "3.1.2"
  86. description = "A very fast and expressive template engine."
  87. category = "main"
  88. optional = false
  89. python-versions = ">=3.7"
  90. [package.dependencies]
  91. MarkupSafe = ">=2.0"
  92. [package.extras]
  93. i18n = ["Babel (>=2.7)"]
  94. [[package]]
  95. name = "markupsafe"
  96. version = "2.1.1"
  97. description = "Safely add untrusted strings to HTML/XML markup."
  98. category = "main"
  99. optional = false
  100. python-versions = ">=3.7"
  101. [[package]]
  102. name = "py-bcrypt"
  103. version = "0.4"
  104. description = "bcrypt password hashing and key derivation"
  105. category = "main"
  106. optional = false
  107. python-versions = "*"
  108. [[package]]
  109. name = "pycodestyle"
  110. version = "2.10.0"
  111. description = "Python style guide checker"
  112. category = "dev"
  113. optional = false
  114. python-versions = ">=3.6"
  115. [[package]]
  116. name = "sqlalchemy"
  117. version = "1.4.45"
  118. description = "Database Abstraction Library"
  119. category = "main"
  120. optional = false
  121. python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7"
  122. [package.dependencies]
  123. greenlet = {version = "!=0.4.17", markers = "python_version >= \"3\" and (platform_machine == \"aarch64\" or platform_machine == \"ppc64le\" or platform_machine == \"x86_64\" or platform_machine == \"amd64\" or platform_machine == \"AMD64\" or platform_machine == \"win32\" or platform_machine == \"WIN32\")"}
  124. [package.extras]
  125. aiomysql = ["greenlet (!=0.4.17)", "aiomysql"]
  126. aiosqlite = ["typing_extensions (!=3.10.0.1)", "greenlet (!=0.4.17)", "aiosqlite"]
  127. asyncio = ["greenlet (!=0.4.17)"]
  128. asyncmy = ["greenlet (!=0.4.17)", "asyncmy (>=0.2.3,!=0.2.4)"]
  129. mariadb_connector = ["mariadb (>=1.0.1,!=1.1.2)"]
  130. mssql = ["pyodbc"]
  131. mssql_pymssql = ["pymssql"]
  132. mssql_pyodbc = ["pyodbc"]
  133. mypy = ["sqlalchemy2-stubs", "mypy (>=0.910)"]
  134. mysql = ["mysqlclient (>=1.4.0,<2)", "mysqlclient (>=1.4.0)"]
  135. mysql_connector = ["mysql-connector-python"]
  136. oracle = ["cx_oracle (>=7,<8)", "cx_oracle (>=7)"]
  137. postgresql = ["psycopg2 (>=2.7)"]
  138. postgresql_asyncpg = ["greenlet (!=0.4.17)", "asyncpg"]
  139. postgresql_pg8000 = ["pg8000 (>=1.16.6,!=1.29.0)"]
  140. postgresql_psycopg2binary = ["psycopg2-binary"]
  141. postgresql_psycopg2cffi = ["psycopg2cffi"]
  142. pymysql = ["pymysql (<1)", "pymysql"]
  143. sqlcipher = ["sqlcipher3-binary"]
  144. [[package]]
  145. name = "tomli"
  146. version = "2.0.1"
  147. description = "A lil' TOML parser"
  148. category = "dev"
  149. optional = false
  150. python-versions = ">=3.7"
  151. [[package]]
  152. name = "types-flask-sqlalchemy"
  153. version = "2.5.9"
  154. description = "Typing stubs for Flask-SQLAlchemy"
  155. category = "dev"
  156. optional = false
  157. python-versions = "*"
  158. [package.dependencies]
  159. types-SQLAlchemy = "*"
  160. [[package]]
  161. name = "types-sqlalchemy"
  162. version = "1.4.53.19"
  163. description = "Typing stubs for SQLAlchemy"
  164. category = "dev"
  165. optional = false
  166. python-versions = "*"
  167. [[package]]
  168. name = "werkzeug"
  169. version = "2.2.2"
  170. description = "The comprehensive WSGI web application library."
  171. category = "main"
  172. optional = false
  173. python-versions = ">=3.7"
  174. [package.dependencies]
  175. MarkupSafe = ">=2.1.1"
  176. [package.extras]
  177. watchdog = ["watchdog"]
  178. [[package]]
  179. name = "zipp"
  180. version = "3.11.0"
  181. description = "Backport of pathlib-compatible object wrapper for zip files"
  182. category = "main"
  183. optional = false
  184. python-versions = ">=3.7"
  185. [package.extras]
  186. docs = ["sphinx (>=3.5)", "jaraco.packaging (>=9)", "rst.linker (>=1.9)", "furo", "jaraco.tidelift (>=1.4)"]
  187. testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "flake8 (<5)", "pytest-cov", "pytest-enabler (>=1.3)", "jaraco.itertools", "func-timeout", "jaraco.functools", "more-itertools", "pytest-black (>=0.3.7)", "pytest-mypy (>=0.9.1)", "pytest-flake8"]
  188. [metadata]
  189. lock-version = "1.1"
  190. python-versions = "^3.9"
  191. content-hash = "54b3e8cb9fa3e9c6b85642bc519182772dac7ede4030fa8209e2510ccdbcd90c"
  192. [metadata.files]
  193. autopep8 = []
  194. click = [
  195. {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"},
  196. {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"},
  197. ]
  198. colorama = []
  199. flask = []
  200. flask-sqlalchemy = []
  201. greenlet = []
  202. importlib-metadata = []
  203. itsdangerous = []
  204. jinja2 = [
  205. {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"},
  206. {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"},
  207. ]
  208. markupsafe = [
  209. {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812"},
  210. {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a"},
  211. {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a49907dd8420c5685cfa064a1335b6754b74541bbb3706c259c02ed65b644b3e"},
  212. {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10c1bfff05d95783da83491be968e8fe789263689c02724e0c691933c52994f5"},
  213. {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7bd98b796e2b6553da7225aeb61f447f80a1ca64f41d83612e6139ca5213aa4"},
  214. {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b09bf97215625a311f669476f44b8b318b075847b49316d3e28c08e41a7a573f"},
  215. {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:694deca8d702d5db21ec83983ce0bb4b26a578e71fbdbd4fdcd387daa90e4d5e"},
  216. {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:efc1913fd2ca4f334418481c7e595c00aad186563bbc1ec76067848c7ca0a933"},
  217. {file = "MarkupSafe-2.1.1-cp310-cp310-win32.whl", hash = "sha256:4a33dea2b688b3190ee12bd7cfa29d39c9ed176bda40bfa11099a3ce5d3a7ac6"},
  218. {file = "MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:dda30ba7e87fbbb7eab1ec9f58678558fd9a6b8b853530e176eabd064da81417"},
  219. {file = "MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:671cd1187ed5e62818414afe79ed29da836dde67166a9fac6d435873c44fdd02"},
  220. {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3799351e2336dc91ea70b034983ee71cf2f9533cdff7c14c90ea126bfd95d65a"},
  221. {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591e9ecd94d7feb70c1cbd7be7b3ebea3f548870aa91e2732960fa4d57a37"},
  222. {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6fbf47b5d3728c6aea2abb0589b5d30459e369baa772e0f37a0320185e87c980"},
  223. {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d5ee4f386140395a2c818d149221149c54849dfcfcb9f1debfe07a8b8bd63f9a"},
  224. {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:bcb3ed405ed3222f9904899563d6fc492ff75cce56cba05e32eff40e6acbeaa3"},
  225. {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e1c0b87e09fa55a220f058d1d49d3fb8df88fbfab58558f1198e08c1e1de842a"},
  226. {file = "MarkupSafe-2.1.1-cp37-cp37m-win32.whl", hash = "sha256:8dc1c72a69aa7e082593c4a203dcf94ddb74bb5c8a731e4e1eb68d031e8498ff"},
  227. {file = "MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:97a68e6ada378df82bc9f16b800ab77cbf4b2fada0081794318520138c088e4a"},
  228. {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e8c843bbcda3a2f1e3c2ab25913c80a3c5376cd00c6e8c4a86a89a28c8dc5452"},
  229. {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0212a68688482dc52b2d45013df70d169f542b7394fc744c02a57374a4207003"},
  230. {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e576a51ad59e4bfaac456023a78f6b5e6e7651dcd383bcc3e18d06f9b55d6d1"},
  231. {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b9fe39a2ccc108a4accc2676e77da025ce383c108593d65cc909add5c3bd601"},
  232. {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96e37a3dc86e80bf81758c152fe66dbf60ed5eca3d26305edf01892257049925"},
  233. {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6d0072fea50feec76a4c418096652f2c3238eaa014b2f94aeb1d56a66b41403f"},
  234. {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:089cf3dbf0cd6c100f02945abeb18484bd1ee57a079aefd52cffd17fba910b88"},
  235. {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a074d34ee7a5ce3effbc526b7083ec9731bb3cbf921bbe1d3005d4d2bdb3a63"},
  236. {file = "MarkupSafe-2.1.1-cp38-cp38-win32.whl", hash = "sha256:421be9fbf0ffe9ffd7a378aafebbf6f4602d564d34be190fc19a193232fd12b1"},
  237. {file = "MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7"},
  238. {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e04e26803c9c3851c931eac40c695602c6295b8d432cbe78609649ad9bd2da8a"},
  239. {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b87db4360013327109564f0e591bd2a3b318547bcef31b468a92ee504d07ae4f"},
  240. {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99a2a507ed3ac881b975a2976d59f38c19386d128e7a9a18b7df6fff1fd4c1d6"},
  241. {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56442863ed2b06d19c37f94d999035e15ee982988920e12a5b4ba29b62ad1f77"},
  242. {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ce11ee3f23f79dbd06fb3d63e2f6af7b12db1d46932fe7bd8afa259a5996603"},
  243. {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:33b74d289bd2f5e527beadcaa3f401e0df0a89927c1559c8566c066fa4248ab7"},
  244. {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:43093fb83d8343aac0b1baa75516da6092f58f41200907ef92448ecab8825135"},
  245. {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8e3dcf21f367459434c18e71b2a9532d96547aef8a871872a5bd69a715c15f96"},
  246. {file = "MarkupSafe-2.1.1-cp39-cp39-win32.whl", hash = "sha256:d4306c36ca495956b6d568d276ac11fdd9c30a36f1b6eb928070dc5360b22e1c"},
  247. {file = "MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247"},
  248. {file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"},
  249. ]
  250. py-bcrypt = []
  251. pycodestyle = []
  252. sqlalchemy = []
  253. tomli = [
  254. {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"},
  255. {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
  256. ]
  257. types-flask-sqlalchemy = []
  258. types-sqlalchemy = []
  259. werkzeug = []
  260. zipp = []