-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (66 loc) · 1.87 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[tool.poetry]
name = "fastapi-oauth"
version = "0.3.4"
description = "OAuth2 Provider in FastAPI"
authors = [
"Đỗ Quốc Vương <[email protected]>",
]
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/vuongtlt13/fastapi-oauth"
keywords = [
"oauth2",
"fastapi"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[tool.poetry.urls]
"Homepage" = "https://github.com/vuongtlt13/fastapi-oauth"
"Bug Tracker" = "https://github.com/vuongtlt13/fastapi-oauth/issues"
[tool.poetry.dependencies]
python = "^3.7"
fastapi = "^0.85.1"
SQLAlchemy = { version = "^1.4.28", extras = ["asyncio"] }
Werkzeug = "^2.2.2"
pydantic = { version = "^1.10.2", extras = ["dotenv"] }
[tool.poetry.group.dev.dependencies]
sqlalchemy = { version = "^1.4.28", extras = ["mypy"] }
mypy = "0.930"
sqlalchemy2-stubs = "^0.0.2a29"
isort = "^5.10.1"
pre-commit = "^2.20.0"
[tool.poetry.group.build.dependencies]
keyring = "^23.9.3"
twine = "^4.0.1"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.0"
coverage = {version = "^6.5.0", extras = ["toml"]}
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 120
[tool.mypy]
plugins = "sqlalchemy.ext.mypy.plugin,pydantic.mypy"
[[tool.mypy.overrides]]
module = [
"sqlalchemy.orm.*",
"sqlalchemy.ext.asyncio"
]
ignore_missing_imports = true
[tool.coverage.run]
source = ["src"]
[tool.coverage.report]
show_missing = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[backend]
default-keyring = "keyring.backends.SecretService.Keyring"