1
0
mirror of https://github.com/enpaul/kodak.git synced 2024-09-21 08:13:54 +00:00

Add peewee ORM dependency

This commit is contained in:
Ethan Paul 2020-09-21 19:38:52 -04:00
parent 3e08b62010
commit 474d846f47
No known key found for this signature in database
GPG Key ID: C5F5542B54A4D9C6
2 changed files with 13 additions and 1 deletions

13
poetry.lock generated
View File

@ -712,6 +712,14 @@ category = "dev"
optional = false
python-versions = ">=2.6"
[[package]]
name = "peewee"
version = "3.14.0"
description = "a little orm"
category = "main"
optional = false
python-versions = "*"
[[package]]
name = "pexpect"
version = "4.8.0"
@ -1385,7 +1393,7 @@ testing = ["pytest (>=3.5,!=3.7.3)", "pytest-checkdocs (>=1.2.3)", "pytest-flake
[metadata]
lock-version = "1.1"
python-versions = "^3.7"
content-hash = "c3a19157e09a2f8ace62762bcdbb872fe778bdbf6badd66ef7d70d100428d220"
content-hash = "3b2cffcc280088b9b822576e75c405eab5bfebe4f1cdda415db1b72bc5ae3ca0"
[metadata.files]
alabaster = [
@ -1818,6 +1826,9 @@ pbr = [
{file = "pbr-5.5.1-py2.py3-none-any.whl", hash = "sha256:b236cde0ac9a6aedd5e3c34517b423cd4fd97ef723849da6b0d2231142d89c00"},
{file = "pbr-5.5.1.tar.gz", hash = "sha256:5fad80b613c402d5b7df7bd84812548b2a61e9977387a80a5fc5c396492b13c9"},
]
peewee = [
{file = "peewee-3.14.0.tar.gz", hash = "sha256:59c5ef43877029b9133d87001dcc425525de231d1f983cece8828197fb4b84fa"},
]
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

@ -41,6 +41,7 @@ python = "^3.7"
flask = "^1.1.2"
flask-restful = "^0.3.8"
"ruamel.yaml" = "^0.16.12"
peewee = "^3.13.3"
[tool.poetry.dev-dependencies]
bandit = "^1.6.2"