-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
119 lines (103 loc) · 2.81 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aioauth"
dynamic = ["version"]
description = "Asynchronous OAuth 2.0 framework for Python 3."
readme = "README.md"
requires-python = ">=3.9.0"
authors = [
{ name = "Ali Aliyev", email = "[email protected]" },
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"Development Status :: 1 - Planning",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP",
]
dependencies = [
"typing_extensions"
]
[project.optional-dependencies]
dev = [
"build",
"twine",
"pytest",
"coverage",
"pytest-asyncio",
"mypy",
"bandit",
"pre-commit",
"pytest-cov",
]
docs = [
"sphinx",
"sphinx-copybutton",
"sphinx-autobuild",
"m2r2",
"sphinx-rtd-theme",
]
fastapi = [
"aioauth-fastapi>=0.0.1"
]
[project.urls]
homepage = "https://github.com/aliev/aioauth"
[tool.setuptools.dynamic]
version = { attr = "aioauth.__version__" }
[tool.setuptools.packages.find]
include = ["aioauth", "aioauth.*"]
[tool.setuptools.package-data]
"aioauth" = ["py.typed"]
[tool.pytest.ini_options]
addopts = "-s --strict-markers -vv --cache-clear --maxfail=1"
pythonpath = ["."]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.mypy]
python_version = "3.9"
warn_no_return = false
disallow_untyped_defs = false
allow_redefinition = true
namespace_packages = true
explicit_package_bases = true
[tool.mypy-packages]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = 'shared'
ignore_missing_imports = true
[tool.flake8]
ignore = ["D10", "E203", "E501", "W503", "D205", "D400", "A001", "D210", "D401", "E701"]
max-line-length = 88
select = ["A", "B", "C4", "D", "E", "F", "M", "Q", "T", "W", "ABS", "BLK"]
exclude = ["versions/*"]
inline-quotes = "\""
[tool.isort]
profile = "black"
[tool.coverage.run]
relative_files = true
source = ["aioauth"]
branch = true
[tool.coverage.report]
include = [
"aioauth/*",
]