-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[tool.poetry]
name = "quart-peewee"
version = "0.1.1"
description = "Integration between the Quart web framework and the Peewee ORM through the Peewee-AIO"
authors = ["Oleksandr Tishyn <mm@m10e.net>"]
license = "MIT"
readme = "README.md"
keywords = ["peewee", "quart", "asyncio", "trio", "orm"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
repository = "https://github.com/Mystic-Mirage/quart-peewee"
[tool.poetry.dependencies]
python = "^3.8"
peewee-aio = ">=1.3.0"
quart = ">=0.19.1"
[tool.poetry.group.dev.dependencies]
aiosqlite = "*"
pytest = "*"
pytest-asyncio = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"