-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
71 lines (64 loc) · 2.08 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.9.0", "setuptools>=69"]
[tool.poetry]
name="pyracf"
version="1.0b6"
description="Python interface to RACF using IRRSMO00 RACF Callable Service."
license = "Apache-2.0"
authors = [
"Joe Bostian <[email protected]>",
"Frank De Gilio <[email protected]>",
"Leonard J. Carcaramo Jr <[email protected]>",
"Elijah Swift <[email protected]>",
]
maintainers = [
"Leonard J. Carcaramo Jr <[email protected]>",
"Elijah Swift <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/ambitus/pyracf"
documentation = "https://ambitus.github.io/pyracf/"
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Other",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Security",
"Topic :: System :: Hardware :: Mainframes",
"Topic :: System :: Systems Administration",
]
[tool.poetry.build]
script = "build_extension.py"
generate-setup-file = true
[tool.poetry.dependencies]
python = ">=3.10"
defusedxml = ">=0.7.1"
[tool.poetry.group.dev.dependencies]
isort = ">=5.13.2"
pre-commit = ">=3.6.0"
black = ">=24.1.1"
flake8 = ">=7.0.0"
pylint = ">=3.0.3"
coverage = ">=7.4.1"
wheel = ">=0.42.0"
ebcdic = ">=1.1.1"
[tool.isort]
profile = "black"
[tool.pylint.FORMAT]
max-args = 6
max-returns = 7
max-attributes = 10
[tool.pylint.'MESSAGES CONTROL']
disable = """
too-few-public-methods,
too-many-public-methods,
import-error,
pointless-statement
"""