-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
120 lines (111 loc) · 3.05 KB
/
pyproject.toml
File metadata and controls
120 lines (111 loc) · 3.05 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
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
120
[project]
name = "mapper-ofac-advanced"
version = "0.0.1"
description = "mapper-ofac-advanced"
authors = [{ name = "senzing", email = "support@senzing.com" }]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "Apache-2.0"
license-files = [
"LICENSE",
".github/senzing-corporate-contributor-license-agreement.pdf",
".github/senzing-individual-contributor-license-agreement.pdf",
]
[project.urls]
bugtracker = "https://github.com/senzing/mapper-ofac-advanced/issues"
changelog = "https://github.com/senzing/mapper-ofac-advanced/blob/main/CHANGELOG.md"
source = "https://github.com/senzing/mapper-ofac-advanced"
[build-system]
requires = ["setuptools>=80", "wheel"]
build-backend = "setuptools.build_meta"
[dependency-groups]
all = [
{ include-group = "development" },
{ include-group = "documentation" },
{ include-group = "lint" },
{ include-group = "test" },
]
development = [
"build==1.4.0",
"coverage==7.10.7; python_version <= '3.11'",
"coverage==7.13.4; python_version > '3.11'",
"cryptography==46.0.5",
"psutil==7.2.2",
"pytest-cov==7.0.0",
"pytest-schema==0.1.2",
"pytest==8.4.2; python_version <= '3.11'",
"pytest==9.0.2; python_version > '3.11'",
"twine==6.2.0",
"virtualenv==20.38.0",
"wheel==0.46.3",
]
documentation = [
"autodocsumm",
"myst_parser",
"sphinx-autodoc-typehints",
"sphinx-gallery",
"sphinx-jinja2-compat",
"sphinx-prompt",
"sphinx-rtd-theme",
"sphinx-tabs",
"sphinx-toolbox",
"sphinx",
"sphinxcontrib-applehelp",
"sphinxcontrib-devhelp",
"sphinxcontrib-htmlhelp",
"sphinxcontrib-jquery",
"sphinxcontrib-jsmath",
"sphinxcontrib-qthelp",
"sphinxcontrib-serializinghtml",
"sphinxext-remoteliteralinclude",
]
lint = [
"bandit==1.8.6; python_version <= '3.11'",
"bandit==1.9.3; python_version > '3.11'",
"black==25.11.0; python_version <= '3.11'",
"black==26.1.0; python_version > '3.11'",
"flake8==7.3.0",
"isort==6.1.0; python_version <= '3.11'",
"isort==8.0.0; python_version > '3.11'",
"mypy==1.19.1",
"pylint-per-file-ignores==2.0.3; python_version <= '3.11'",
"pylint-per-file-ignores==3.2.0; python_version > '3.11'",
"pylint==3.3.9; python_version <= '3.11'",
"pylint==4.0.5; python_version > '3.11'",
]
test = [
"pytest==8.4.2; python_version <= '3.11'",
"pytest==9.0.2; python_version > '3.11'",
"coverage==7.10.7; python_version <= '3.11'",
"coverage==7.13.4; python_version > '3.11'",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.bandit]
skips = ["B101"]
[tool.black]
line-length = 120
[tool.flake8]
extend-ignore = ["E203", "E704"]
max-line-length = 120
[tool.isort]
profile = "black"
src_paths = ["examples", "src", "tests"]
[tool.pylint]
ignored-argument-names = "args|kwargs"
disable = [
"consider-using-with",
"invalid-name",
"line-too-long",
"too-many-branches",
"too-many-lines",
"too-many-statements",
"unspecified-encoding",
]
good-names = ["mapper-ofac-advanced"]
ignore = ["__init__.py", "docs/source/conf.py"]
notes = ["FIXME"]