5 changed files with 82 additions and 0 deletions
@ -0,0 +1,66 @@ |
|||
# This file is automatically @generated by Poetry and should not be changed by hand. |
|||
|
|||
[[package]] |
|||
name = "asgiref" |
|||
version = "3.6.0" |
|||
description = "ASGI specs, helper code, and adapters" |
|||
category = "main" |
|||
optional = false |
|||
python-versions = ">=3.7" |
|||
files = [ |
|||
{file = "asgiref-3.6.0-py3-none-any.whl", hash = "sha256:71e68008da809b957b7ee4b43dbccff33d1b23519fb8344e33f049897077afac"}, |
|||
{file = "asgiref-3.6.0.tar.gz", hash = "sha256:9567dfe7bd8d3c8c892227827c41cce860b368104c3431da67a0c5a65a949506"}, |
|||
] |
|||
|
|||
[package.extras] |
|||
tests = ["mypy (>=0.800)", "pytest", "pytest-asyncio"] |
|||
|
|||
[[package]] |
|||
name = "django" |
|||
version = "4.1.7" |
|||
description = "A high-level Python web framework that encourages rapid development and clean, pragmatic design." |
|||
category = "main" |
|||
optional = false |
|||
python-versions = ">=3.8" |
|||
files = [ |
|||
{file = "Django-4.1.7-py3-none-any.whl", hash = "sha256:f2f431e75adc40039ace496ad3b9f17227022e8b11566f4b363da44c7e44761e"}, |
|||
{file = "Django-4.1.7.tar.gz", hash = "sha256:44f714b81c5f190d9d2ddad01a532fe502fa01c4cb8faf1d081f4264ed15dcd8"}, |
|||
] |
|||
|
|||
[package.dependencies] |
|||
asgiref = ">=3.5.2,<4" |
|||
sqlparse = ">=0.2.2" |
|||
tzdata = {version = "*", markers = "sys_platform == \"win32\""} |
|||
|
|||
[package.extras] |
|||
argon2 = ["argon2-cffi (>=19.1.0)"] |
|||
bcrypt = ["bcrypt"] |
|||
|
|||
[[package]] |
|||
name = "sqlparse" |
|||
version = "0.4.3" |
|||
description = "A non-validating SQL parser." |
|||
category = "main" |
|||
optional = false |
|||
python-versions = ">=3.5" |
|||
files = [ |
|||
{file = "sqlparse-0.4.3-py3-none-any.whl", hash = "sha256:0323c0ec29cd52bceabc1b4d9d579e311f3e4961b98d174201d5622a23b85e34"}, |
|||
{file = "sqlparse-0.4.3.tar.gz", hash = "sha256:69ca804846bb114d2ec380e4360a8a340db83f0ccf3afceeb1404df028f57268"}, |
|||
] |
|||
|
|||
[[package]] |
|||
name = "tzdata" |
|||
version = "2022.7" |
|||
description = "Provider of IANA time zone data" |
|||
category = "main" |
|||
optional = false |
|||
python-versions = ">=2" |
|||
files = [ |
|||
{file = "tzdata-2022.7-py2.py3-none-any.whl", hash = "sha256:2b88858b0e3120792a3c0635c23daf36a7d7eeeca657c323da299d2094402a0d"}, |
|||
{file = "tzdata-2022.7.tar.gz", hash = "sha256:fe5f866eddd8b96e9fcba978f8e503c909b19ea7efda11e52e39494bad3a7bfa"}, |
|||
] |
|||
|
|||
[metadata] |
|||
lock-version = "2.0" |
|||
python-versions = "^3.10" |
|||
content-hash = "3e6cd1d09d84211ff632f3291d29fa46481a4795ffa863bf8650f76a26de2681" |
|||
@ -0,0 +1,16 @@ |
|||
[tool.poetry] |
|||
name = "dbplop" |
|||
version = "0.1.0" |
|||
description = "" |
|||
authors = ["Your Name <you@example.com>"] |
|||
readme = "README.md" |
|||
packages = [{include = "dbplop", from = "src"}] |
|||
|
|||
[tool.poetry.dependencies] |
|||
python = "^3.10" |
|||
django = "^4.1.7" |
|||
|
|||
|
|||
[build-system] |
|||
requires = ["poetry-core"] |
|||
build-backend = "poetry.core.masonry.api" |
|||
Loading…
Reference in new issue