Add database ORM dependencies

This commit is contained in:
Ethan Paul 2022-02-07 22:49:18 -05:00
parent c76628d97e
commit 6e1bd3191a
No known key found for this signature in database
GPG Key ID: 6A337337DF6B5B1A
2 changed files with 29 additions and 1 deletions

28
poetry.lock generated
View File

@ -664,6 +664,25 @@ category = "dev"
optional = false
python-versions = ">=2.6"
[[package]]
name = "peewee"
version = "3.14.8"
description = "a little orm"
category = "main"
optional = false
python-versions = "*"
[[package]]
name = "peewee-plus"
version = "1.1.0"
description = "Various extensions, helpers, and utilities for Peewee"
category = "main"
optional = false
python-versions = ">=3.6.1,<4.0.0"
[package.dependencies]
peewee = ">=3.14.8,<4.0.0"
[[package]]
name = "pexpect"
version = "4.8.0"
@ -1182,7 +1201,7 @@ python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
[metadata]
lock-version = "1.1"
python-versions = "^3.10"
content-hash = "849bb4ca7f6c2b98e526bd6bee2b7d04058de337e1bba6caf56a6e81cb8a828b"
content-hash = "34a315e8100872c11d5de1aabd6411adef473a95c3cb9d63451482ca6067875a"
[metadata.files]
appnope = [
@ -1620,6 +1639,13 @@ pbr = [
{file = "pbr-5.8.1-py2.py3-none-any.whl", hash = "sha256:27108648368782d07bbf1cb468ad2e2eeef29086affd14087a6d04b7de8af4ec"},
{file = "pbr-5.8.1.tar.gz", hash = "sha256:66bc5a34912f408bb3925bf21231cb6f59206267b7f63f3503ef865c1a292e25"},
]
peewee = [
{file = "peewee-3.14.8.tar.gz", hash = "sha256:01bd7f734defb08d7a3346a0c0ca7011bc8d0d685934ec0e001b3371d522ec53"},
]
peewee-plus = [
{file = "peewee-plus-1.1.0.tar.gz", hash = "sha256:7507ef1ffe28b8755079fa6fc22dbc8b15353ed976a31d81ae50be52de61d68e"},
{file = "peewee_plus-1.1.0-py3-none-any.whl", hash = "sha256:979379be6f56a6c60e4c1fa5483a6d45417cc205fab2328a58bc1f30baecdd12"},
]
pexpect = [
{file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"},
{file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"},

View File

@ -16,6 +16,8 @@ readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
peewee = "^3.14.8"
peewee-plus = "^1.1.0"
[tool.poetry.dev-dependencies]
bandit = "^1.6.2"