diff --git a/sendmail/MANIFEST.in b/sendmail/MANIFEST.in deleted file mode 100644 index 6fa1c2388a..0000000000 --- a/sendmail/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/sendmail/pyproject.toml b/sendmail/pyproject.toml new file mode 100644 index 0000000000..bd0e439ccb --- /dev/null +++ b/sendmail/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-sendmail" +description = "The Sendmail check" +readme = "README.md" +license = "BSD-3-Clause" +keywords = [ + "datadog", + "datadog agent", + "datadog check", + "sendmail", +] +authors = [ + { name = "Datadog", email = "packages@datadoghq.com" }, +] +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>=4.2.0", +] +dynamic = [ + "version", +] + +[project.optional-dependencies] +deps = [] + +[project.urls] +Source = "https://github.com/DataDog/integrations-extras" + +[tool.hatch.version] +path = "datadog_checks/sendmail/__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/sendmail", +] +dev-mode-dirs = [ + ".", +] diff --git a/sendmail/requirements.in b/sendmail/requirements.in deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/sendmail/setup.py b/sendmail/setup.py index a006530c71..2fbf0d8438 100644 --- a/sendmail/setup.py +++ b/sendmail/setup.py @@ -24,7 +24,22 @@ def get_dependencies(): return f.readlines() -CHECKS_BASE_REQ = 'datadog-checks-base>=4.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.sendmail'], # 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/sendmail/tox.ini b/sendmail/tox.ini index fc27373c8b..2646a6656d 100644 --- a/sendmail/tox.ini +++ b/sendmail/tox.ini @@ -14,6 +14,7 @@ envdir = dd_check_style = true usedevelop = true platform = linux|darwin|win32 +extras = deps deps = datadog-checks-base[deps]>=6.6.0 -rrequirements-dev.txt @@ -21,5 +22,4 @@ passenv = DOCKER* COMPOSE* commands = - pip install -r requirements.in pytest -v {posargs}