|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[tool.setuptools.packages.find] |
| 6 | +where = ["packages"] |
| 7 | + |
| 8 | +[tool.setuptools.dynamic] |
| 9 | +version = {attr = "openshift.__VERSION__"} |
| 10 | + |
| 11 | +[project] |
| 12 | +name = "openshift-client" |
| 13 | +description = "OpenShift python client" |
| 14 | +keywords = ["OpenShift"] |
| 15 | +readme = "README.md" |
| 16 | +license = {file = "LICENSE"} |
| 17 | +authors = [ |
| 18 | + {name = "Justin Pierce", email = "jupierce@redhat.com"}, |
| 19 | +] |
| 20 | +maintainers = [ |
| 21 | + {name = "Brad Williams", email = "brawilli@redhat.com"}, |
| 22 | +] |
| 23 | +classifiers = [ |
| 24 | + "Development Status :: 4 - Beta", |
| 25 | + "Intended Audience :: Developers", |
| 26 | + "Intended Audience :: Information Technology", |
| 27 | + "License :: OSI Approved :: Apache Software License", |
| 28 | + "Operating System :: OS Independent", |
| 29 | + "Programming Language :: Python", |
| 30 | + "Programming Language :: Python :: 2", |
| 31 | + "Programming Language :: Python :: 2.7", |
| 32 | + "Programming Language :: Python :: 3", |
| 33 | + "Programming Language :: Python :: 3.12", |
| 34 | + "Topic :: Utilities", |
| 35 | +] |
| 36 | +requires-python = ">= 2.7" |
| 37 | +dependencies = [ |
| 38 | + "pyyaml", |
| 39 | + "six", |
| 40 | +] |
| 41 | +dynamic = [ |
| 42 | + "version", |
| 43 | +] |
| 44 | + |
| 45 | +[project.optional-dependencies] |
| 46 | +ssh = ["paramiko"] |
| 47 | + |
| 48 | +[project.urls] |
| 49 | +Homepage = "https://github.com/openshift/openshift-client-python" |
| 50 | +Issues = "https://github.com/openshift/openshift-client-python/issues" |
0 commit comments