diff --git a/redpanda/MANIFEST.in b/redpanda/MANIFEST.in deleted file mode 100644 index 6fa1c2388a..0000000000 --- a/redpanda/MANIFEST.in +++ /dev/null @@ -1,10 +0,0 @@ -graft datadog_checks -graft tests - -include MANIFEST.in -include README.md -include requirements.in -include requirements-dev.txt -include manifest.json - -global-exclude *.py[cod] __pycache__ diff --git a/redpanda/pyproject.toml b/redpanda/pyproject.toml new file mode 100644 index 0000000000..388e0ddfd0 --- /dev/null +++ b/redpanda/pyproject.toml @@ -0,0 +1,62 @@ +[build-system] +requires = [ + "hatchling>=0.12.0", + "setuptools; python_version < '3.0'", +] +build-backend = "hatchling.build" + +[project] +name = "datadog-redpanda" +description = "The Redpanda check" +readme = "README.md" +license = "BSD-3-Clause" +keywords = [ + "datadog", + "datadog agent", + "datadog check", + "redpanda", +] +authors = [ + { email = "support@vectorized.io" }, +] +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "License :: OSI Approved :: BSD License", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3.8", + "Topic :: System :: Monitoring", +] +dependencies = [ + "datadog-checks-base>=11.2.0", +] +dynamic = [ + "version", +] + +[project.optional-dependencies] +deps = [] + +[project.urls] +Source = "https://github.com/DataDog/integrations-extras" + +[tool.hatch.version] +path = "datadog_checks/redpanda/__about__.py" + +[tool.hatch.build.targets.sdist] +include = [ + "/datadog_checks", + "/tests", + "/manifest.json", + "/requirements-dev.txt", + "/tox.ini", +] + +[tool.hatch.build.targets.wheel] +include = [ + "/datadog_checks/redpanda", +] +dev-mode-dirs = [ + ".", +] diff --git a/redpanda/requirements.in b/redpanda/requirements.in deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/redpanda/setup.py b/redpanda/setup.py index f7d55e7d9d..fef4e966c0 100644 --- a/redpanda/setup.py +++ b/redpanda/setup.py @@ -24,7 +24,22 @@ def get_dependencies(): return f.readlines() -CHECKS_BASE_REQ = 'datadog-checks-base>=11.2.0' +def parse_pyproject_array(name): + import os + import re + from ast import literal_eval + + pattern = r'^{} = (\[.*?\])$'.format(name) + + with open(os.path.join(HERE, 'pyproject.toml'), 'r', encoding='utf-8') as f: + # Windows \r\n prevents match + contents = '\n'.join(line.rstrip() for line in f.readlines()) + + array = re.search(pattern, contents, flags=re.MULTILINE | re.DOTALL).group(1) + return literal_eval(array) + + +CHECKS_BASE_REQ = parse_pyproject_array('dependencies')[0] setup( @@ -55,7 +70,7 @@ def get_dependencies(): packages=['datadog_checks.redpanda'], # Run-time dependencies install_requires=[CHECKS_BASE_REQ], - extras_require={'deps': get_dependencies()}, + extras_require={'deps': parse_pyproject_array('deps')}, # Extra files to ship with the wheel package include_package_data=True, ) diff --git a/redpanda/tox.ini b/redpanda/tox.ini index c7ba058e23..102998c891 100644 --- a/redpanda/tox.ini +++ b/redpanda/tox.ini @@ -12,6 +12,7 @@ envdir = dd_check_style = true usedevelop = true platform = linux|darwin|win32 +extras = deps deps = datadog_checks_base[deps] -rrequirements-dev.txt @@ -19,7 +20,6 @@ passenv = DOCKER* COMPOSE* commands = - pip install -r requirements.in pytest -v {posargs} setenv = 21.9: REDPANDA_VERSION=v21.9.6