forked from IdentityPython/idpy-oidc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (41 loc) · 955 Bytes
/
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
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[metadata]
name = "idpyoidc"
version = "1.0.6"
author = "Roland Hedberg"
author_email = "[email protected]"
description = "Everything OAuth2 and OIDC"
long_description = "file: README.md"
long_description_content_type = "text/markdown"
url = "https://github.com/IdentityPython/oidc-op"
license = "Apache-2.0"
classifiers =[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[options]
package_dir = "src"
packages = "find:"
python= "^3.6"
[tool.black]
line-length = 100
[tool.isort]
force_single_line = true
known_first_party = "oidcop"
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 100
[tool.coverage.run]
branch = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError",
]