-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.04 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
[project]
name = "onelogin"
version = "3.2.2"
description = "OneLogin API Python SDK"
authors = [
{name = "OneLogin", email = "developers@onelogin.com"}
]
license = {text = "NoLicense"}
readme = "README.md"
keywords = ["OneLogin", "SDK", "API"]
requires-python = ">=3.10"
dependencies = [
"urllib3>=2.0.2",
"python-dateutil>=2.5.3",
"pydantic>=2.11.0",
"aenum>=3.1.11",
"setuptools>=67.7.1",
]
[project.optional-dependencies]
test = [
"pytest~=7.1.3",
"pytest-cov>=2.8.1",
"pytest-randomly>=3.12.0",
"flake8>=4.0.0",
"tox>=3.9.0",
]
[project.urls]
Repository = "https://github.com/onelogin/onelogin-python-sdk"
[build-system]
requires = ["setuptools>=67.7.1", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = {find = {exclude = ["test*", "docs*"]}}
package-dir = {"" = "."}
include-package-data = true
[tool.pytest.ini_options]
testpaths = ["test"]
python_files = "test_*.py"
[tool.flake8]
max-line-length = 99
[tool.pylint.'MESSAGES CONTROL']
extension-pkg-whitelist = "pydantic"