From 53542a3019dbb06ef8d5a5380a00329eebcc8912 Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Fri, 18 Oct 2024 12:25:38 -0400 Subject: [PATCH] Comment out [project] section of pyproject.toml --- pyproject.toml | 154 ++++++++++++++++++++++++------------------------- 1 file changed, 77 insertions(+), 77 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 26a21e10..a5ce0aca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,83 +5,83 @@ requires = [ ] build-backend = "setuptools.build_meta" -[project] -name = "cmd2" -description = "Quickly build feature-rich and user-friendly interactive command line applications in Python" -readme = "README.md" -license.file = "LICENSE" -authors = [ { name = "cmd2 Contributors" } ] -requires-python = ">=3.8" -classifiers = [ - "Development Status :: 5 - Production/Stable", - "Environment :: Console", - "Intended Audience :: Developers", - "Intended Audience :: System Administrators", - "License :: OSI Approved :: MIT License", - "Operating System :: MacOS", - "Operating System :: Microsoft :: Windows", - "Operating System :: POSIX", - "Operating System :: Unix", - "Programming Language :: Python", - "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", - "Programming Language :: Python :: Implementation :: CPython", - "Topic :: Software Development :: Libraries", -] -keywords = [ - "cmd", - "command", - "console", - "prompt", -] -dynamic = [ - "version", -] -dependencies = [ - "pyperclip", - "wcwidth", - 'gnureadline ; platform_system == "Darwin"', - 'pyreadline3 ; platform_system == "Windows"', -] -[project.optional-dependencies] -dev = [ - "codecov", - "doc8", - "flake8", - "Flake8-pyproject", - "black", - "isort", - "invoke", - "mypy", - "nox", - "pytest", - "pytest-cov", - "pytest-mock", - "sphinx", - "sphinx-rtd-theme", - "sphinx-autobuild", - "twine", -] -test = [ - "codecov", - "coverage", - "pytest", - "pytest-cov", - "pytest-mock", -] -validate = [ - "flake8", - "Flake8-pyproject", - "mypy", - "types-setuptools", -] -[project.urls] -documentation = "https://cmd2.readthedocs.io/" -repository = "https://github.com/python-cmd2/cmd2" +#[project] +#name = "cmd2" +#description = "Quickly build feature-rich and user-friendly interactive command line applications in Python" +#readme = "README.md" +#license.file = "LICENSE" +#authors = [ { name = "cmd2 Contributors" } ] +#requires-python = ">=3.8" +#classifiers = [ +# "Development Status :: 5 - Production/Stable", +# "Environment :: Console", +# "Intended Audience :: Developers", +# "Intended Audience :: System Administrators", +# "License :: OSI Approved :: MIT License", +# "Operating System :: MacOS", +# "Operating System :: Microsoft :: Windows", +# "Operating System :: POSIX", +# "Operating System :: Unix", +# "Programming Language :: Python", +# "Programming Language :: Python :: 3 :: Only", +# "Programming Language :: Python :: 3.8", +# "Programming Language :: Python :: 3.9", +# "Programming Language :: Python :: 3.10", +# "Programming Language :: Python :: 3.11", +# "Programming Language :: Python :: 3.12", +# "Programming Language :: Python :: Implementation :: CPython", +# "Topic :: Software Development :: Libraries", +#] +#keywords = [ +# "cmd", +# "command", +# "console", +# "prompt", +#] +#dynamic = [ +# "version", +#] +#dependencies = [ +# "pyperclip", +# "wcwidth", +# 'gnureadline ; platform_system == "Darwin"', +# 'pyreadline3 ; platform_system == "Windows"', +#] +#[project.optional-dependencies] +#dev = [ +# "codecov", +# "doc8", +# "flake8", +# "Flake8-pyproject", +# "black", +# "isort", +# "invoke", +# "mypy", +# "nox", +# "pytest", +# "pytest-cov", +# "pytest-mock", +# "sphinx", +# "sphinx-rtd-theme", +# "sphinx-autobuild", +# "twine", +#] +#test = [ +# "codecov", +# "coverage", +# "pytest", +# "pytest-cov", +# "pytest-mock", +#] +#validate = [ +# "flake8", +# "Flake8-pyproject", +# "mypy", +# "types-setuptools", +#] +#[project.urls] +#documentation = "https://cmd2.readthedocs.io/" +#repository = "https://github.com/python-cmd2/cmd2" [tool.black] skip-string-normalization = true