From 7aa9f9ce8059e52d9c57bcd4c6eb5f820558088c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Jan 2025 11:43:06 +0000 Subject: [PATCH] Apply updates from cookiecutter This automated commit applies the latest updates from our cookiecutters [1] to this repo. [1]: https://github.com/hypothesis/cookiecutters --- pyproject.toml | 22 ++++++++++++++++++++++ setup.cfg | 28 ---------------------------- 2 files changed, 22 insertions(+), 28 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 96785cb..9b1975c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,6 +2,28 @@ requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"] build-backend = "setuptools.build_meta" +[project] +dynamic = ["version"] +name = "dependabot-alerts" +description = "Notifications of Dependabot alerts across a GitHub organization." +readme = "README.md" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: BSD License", + "Intended Audience :: Developers", +] +requires-python = ">=3.9" +dependencies = [ +] + +[project.urls] +Repository = "https://github.com/hypothesis/dependabot-alerts" +Issues = "https://github.com/hypothesis/dependabot-alerts/issues" +Changelog = "https://github.com/hypothesis/dependabot-alerts/releases" + +[project.scripts] +dependabot-alerts = "dependabot_alerts.cli:cli" + [tool.setuptools_scm] [tool.pytest.ini_options] diff --git a/setup.cfg b/setup.cfg index 9a78aa0..8f1a165 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,31 +1,3 @@ -[metadata] -name = dependabot-alerts -description = Notifications of Dependabot alerts across a GitHub organization. -long_description = file: README.md -long_description_content_type = text/markdown -url = https://github.com/hypothesis/dependabot-alerts -project_urls = - Bug Tracker = https://github.com/hypothesis/dependabot-alerts/issues - Changelog = https://github.com/hypothesis/dependabot-alerts/releases -classifiers = - Programming Language :: Python :: 3 - License :: OSI Approved :: BSD License - Intended Audience :: Developers - -[options] -package_dir = - = src -packages = find: -python_requires = >=3.9 -install_requires = - -[options.packages.find] -where = src - -[options.entry_points] -console_scripts = - dependabot-alerts = dependabot_alerts.cli:cli - [pycodestyle] ignore = # Disable pycodestyle errors and warnings that we don't care about because