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
|
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "jenkinsapi"
version = "0.3.14"
authors = [
{name = "Salim Fadhley", email = "salimfadhley@gmail.com"},
{name = "Aleksey Maksimov", email = "ctpeko3a@gmail.com"},
{name = "Clinton Steiner", email = "clintonsteiner@gmail.com"},
]
maintainers = [
{name = "Aleksey Maksimov", email = "ctpeko3a@gmail.com"},
{name = "Clinton Steiner", email = "clintonsteiner@gmail.com"},
]
description = "A Python API for accessing resources on a Jenkins continuous-integration server."
readme = "README.rst"
license = {text = "MIT license"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
]
requires-python = ">=3.8"
dependencies = [
"pytz>=2014.4",
"requests>=2.3.0",
]
[tool.setuptools]
packages = ["jenkinsapi", "jenkinsapi_utils", "jenkinsapi_tests"]
include-package-data = false
[tool.pbr]
warnerrors = "True"
[project.scripts]
jenkins_invoke = "jenkinsapi.command_line.jenkins_invoke:main"
jenkinsapi_version = "jenkinsapi.command_line.jenkinsapi_version:main"
[tool.build_sphinx]
source-dir = "doc/source"
build-dir = "doc/build"
all_files = "1"
[tool.upload_sphinx]
upload-dir = "doc/build/html"
[tool.distutils.bdist_wheel]
universal = 1
[tool.pycodestyle]
exclude = ".tox,doc/source/conf.py,build,.venv,.eggs"
max-line-length = "99"
[dependency-groups]
dev = [
"pytest-mock>=3.14.0",
"pytest>=8.3.4",
"pytest-cov>=4.0.0",
"pycodestyle>=2.3.1",
"astroid>=1.4.8",
"pylint>=1.7.1",
"tox>=2.3.1",
"mock>=5.1.0",
"codecov>=2.1.13",
"requests-kerberos>=0.15.0",
"ruff>=0.9.6",
]
docs = [
"docutils>=0.20.1",
"furo>=2024.8.6",
"myst-parser>=3.0.1",
"pygments>=2.19.1",
"sphinx>=7.1.2",
]
[tool.ruff]
line-length = 79
[tool.ruff.lint]
select = ["E9", "F63", "F7", "F82"] # Equivalent to flake8’s default rules
ignore = ["F821"] #, "W503", "W504"
|