forked from python-gino/gino-starlette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.26 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
[tool.poetry]
name = "gino-starlette"
version = "0.1.3"
description = "An extension for GINO to integrate with Starlette"
license = "BSD-3-Clause"
authors = ["Tony Wang <wwwjfy@gmail.com>"]
maintainers = ["Aobo Shi <shiaobo8@gmail.com>"]
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]
starlette = ">=0.21"
gino = "^1.0.1"
[tool.poetry.dev-dependencies]
black = "^21.9b0"
# tests
pytest = "^7.1.0"
pytest-asyncio = "^0.18.3"
pytest-cov = "^3.0.0"
pytest-mock = "^3.7.0"
pytest-virtualenv = "^1.7.0"
requests = "^2.28.0"
[tool.poetry.plugins."gino.extensions"]
"starlette" = "gino_starlette"
[tool.black]
line-length = 80
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"