-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (37 loc) · 1.14 KB
/
pyproject.toml
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
36
37
38
39
40
41
42
[tool.poetry]
name = "gino-quart"
version = "0.1.2"
description = "An extension for GINO to integrate with Quart"
license = "BSD-3-Clause"
authors = ["Tony Wang <[email protected]>"]
maintainers = []
readme = "README.md"
homepage = "https://github.com/python-gino/gino-quart"
repository = "https://github.com/python-gino/gino-quart"
documentation = "https://python-gino.org/docs/"
keywords = ["sqlalchemy", "python3", "quart", "gino"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
[tool.poetry.dependencies]
python = "^3.7"
gino = { version = "^1.0.0rc2", allow-prereleases = true }
Werkzeug = "^2.0.1"
Quart = ">=0.15.1,<0.17.0"
[tool.poetry.dev-dependencies]
black = "^22.1"
# tests
pytest = "^7.0.1"
pytest-asyncio = "^0.18.1"
pytest-cov = "^3.0.0"
[tool.poetry.plugins."gino.extensions"]
"quart" = "gino_quart"
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"