|
| 1 | +# Copyright (C) 2021 Rafael Leira |
| 2 | +# |
| 3 | +# This program is distributed in the hope that it will be useful, |
| 4 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 5 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 6 | +# License for more details. |
| 7 | +# |
| 8 | +################################################################ |
| 9 | + |
| 10 | + |
| 11 | +[build-system] |
| 12 | +requires = ["setuptools>=61.0", "setuptools-scm", "wheel"] |
| 13 | +build-backend = "setuptools.build_meta" |
| 14 | + |
| 15 | +[tool.setuptools_scm] |
| 16 | +write_to = "pysmart_exporter/version.py" |
| 17 | +local_scheme = "no-local-version" |
| 18 | + |
| 19 | +[project] |
| 20 | +name = "pySMART-exporter" |
| 21 | +description = "A Prometheus PySMART exporter" |
| 22 | +readme = "README.md" |
| 23 | +keywords = ["prometheus", "SMART", "exporter", "monitoring"] |
| 24 | +license = { text = "BSD-3-Clause" } |
| 25 | +dependencies = ["prometheus-client", "pySMART >=1.3.0"] |
| 26 | +dynamic = ["version"] |
| 27 | +authors = [{ name = "Rafael Leira", email = "[email protected]" }] |
| 28 | + |
| 29 | +classifiers = [ |
| 30 | + "Development Status :: 4 - Beta", |
| 31 | + "Intended Audience :: Developers", |
| 32 | + "Intended Audience :: System Administrators", |
| 33 | + "License :: OSI Approved :: BSD License", |
| 34 | + "Operating System :: OS Independent", |
| 35 | + "Programming Language :: Python", |
| 36 | + "Programming Language :: Python :: 3", |
| 37 | + "Topic :: Software Development", |
| 38 | + "Topic :: Software Development :: Libraries", |
| 39 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 40 | +] |
| 41 | + |
| 42 | +[project.optional-dependencies] |
| 43 | +dev = ['pytest', 'pytest-cov', 'mypy', 'types-tabulate', 'types-six', 'pdoc'] |
| 44 | + |
| 45 | +[project.urls] |
| 46 | +homepage = "https://repo1.naudit.es/theseus/pysmart-exporter" |
| 47 | + |
| 48 | +[project.entry-points."console_scripts"] |
| 49 | +pysmart_exporter = "pysmart_exporter.__main__:main" |
0 commit comments