-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (85 loc) · 1.89 KB
/
Copy pathpyproject.toml
File metadata and controls
93 lines (85 loc) · 1.89 KB
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
[build-system]
requires = ["setuptools>=82.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-adfs"
version = "1.0.1"
description = "Python module for interacting with Microsoft ADFS and OIDC at ease"
readme = "README.md"
urls = { "GitHub" = "https://github.com/Didi45R/python-adfs" }
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
authors = [
{ name = "Yedidya Rosenstark", email = "yedidya.rosenstark@gmail.com" },
]
dependencies = [
"requests",
"pyjwt>=2.12.0",
"aiohttp",
"cryptography",
"pydantic-settings",
"pydantic>=2.0",
"typing_extensions>=4.0.0; python_version < '3.10'",
]
[project.optional-dependencies]
dev = [
"bandit",
"black",
"build",
"flake8",
"isort",
"mypy",
"pylint",
"pytest-asyncio",
"pytest-cov",
"pytest",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["pyadfs*"]
exclude = ["tests*"]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
ensure_newline_before_comments = true
wrap_length = 3
[tool.mypy]
python_version = "3.11"
strict = true
disallow_untyped_defs = true
disallow_untyped_calls = true
ignore_missing_imports = true
[tool.flake8]
max-line-length = 120
max-complexity = 10
[tool.pylint]
max-line-length = 120
disable = [
"C0103",
"C0114",
"C0115",
"C0116",
"C0209",
"C0301",
"R0801",
"R0902",
"R0903",
"R0913",
"R0917",
"W0718",
"W1203",
]
[tool.pytest]
filterwarnings = ["ignore::DeprecationWarning"]