-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.45 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
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "gino-starlette"
version = "0.1.6"
description = "An extension for GINO to integrate with Starlette"
license = "BSD-3-Clause"
authors = ["Tony Wang <[email protected]>"]
maintainers = ["Aobo Shi <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/python-gino/gino-starlette"
repository = "https://github.com/python-gino/gino-starlette"
documentation = "https://python-gino.org/docs/"
keywords = ["sqlalchemy", "python3", "starlette", "gino"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
[tool.poetry.dependencies]
python = ">=3.6.2,<4.0" # fresh black requires at least 3.6.2 so we can't use ^3.6
starlette = ">=0.19,<1.0" # caret behaviour on 0.x is to lock to 0.x.*
gino = "^1.0"
[tool.poetry.dev-dependencies]
black = "^22.3"
# tests
pytest = [
{ version = "^7.1", python="^3.7" },
{ version = "^6.2", python="~3.6" }
]
pytest-asyncio = "^0.15"
pytest-cov = "^3.0"
pytest-mock = "^3.6"
pytest-virtualenv = "^1.7"
requests = "^2.26"
[tool.poetry.plugins."gino.extensions"]
"starlette" = "gino_starlette"
[tool.black]
line-length = 80
[build-system]
requires = ["poetry>=1.2.0"]
build-backend = "poetry.masonry.api"